File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ function Polymer_PropertiesChanged(){}
2424Polymer_PropertiesChanged . prototype . _createPropertyAccessor = function ( property , readOnly ) { } ;
2525/**
2626* @param {string } property Name of the property
27+ */
28+ Polymer_PropertiesChanged . prototype . _addPropertyToAttributeMap = function ( property ) { } ;
29+ /**
30+ * @param {string } property Name of the property
2731* @param {boolean= } readOnly When true, no setter is created
2832* @return {void }
2933*/
Original file line number Diff line number Diff line change @@ -77,6 +77,15 @@ declare namespace Polymer {
7777 */
7878 _createPropertyAccessor ( property : string , readOnly ?: boolean ) : void ;
7979
80+ /**
81+ * Adds the given `property` to a map matching attribute names
82+ * to property names, using `attributeNameForProperty`. This map is
83+ * used when deserializing attribute values to properties.
84+ *
85+ * @param property Name of the property
86+ */
87+ _addPropertyToAttributeMap ( property : string ) : any ;
88+
8089 /**
8190 * Defines a property accessor for the given property.
8291 *
You can’t perform that action at this time.
0 commit comments