File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ export const PropertiesChanged = dedupingMixin(
113
113
*/
114
114
_createPropertyAccessor ( property , readOnly ) {
115
115
this . _addPropertyToAttributeMap ( property ) ;
116
- if ( ! this . hasOwnProperty ( '__dataHasAccessor' ) ) {
116
+ if ( ! this . hasOwnProperty ( JSCompiler_renameProperty ( '__dataHasAccessor' , this ) ) ) {
117
117
this . __dataHasAccessor = Object . assign ( { } , this . __dataHasAccessor ) ;
118
118
}
119
119
if ( ! this . __dataHasAccessor [ property ] ) {
@@ -131,7 +131,7 @@ export const PropertiesChanged = dedupingMixin(
131
131
* @override
132
132
*/
133
133
_addPropertyToAttributeMap ( property ) {
134
- if ( ! this . hasOwnProperty ( '__dataAttributes' ) ) {
134
+ if ( ! this . hasOwnProperty ( JSCompiler_renameProperty ( '__dataAttributes' , this ) ) ) {
135
135
this . __dataAttributes = Object . assign ( { } , this . __dataAttributes ) ;
136
136
}
137
137
if ( ! this . __dataAttributes [ property ] ) {
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ export const PropertiesMixin = dedupingMixin(superClass => {
119
119
* @nocollapse
120
120
*/
121
121
static get observedAttributes ( ) {
122
- if ( ! this . hasOwnProperty ( '__observedAttributes' ) ) {
122
+ if ( ! this . hasOwnProperty ( JSCompiler_renameProperty ( '__observedAttributes' , this ) ) ) {
123
123
register ( this . prototype ) ;
124
124
const props = this . _properties ;
125
125
this . __observedAttributes = props ? Object . keys ( props ) . map ( p => this . attributeNameForProperty ( p ) ) : [ ] ;
You can’t perform that action at this time.
0 commit comments