You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, when another class uses this class as a parent, that flag will already be set, and the configuration is not set up properly.
classParentextendsState{}classChildextendsParent{}Child.STATE={foo: {setter: function(val){console.log('this is never called');}}};// Parent must be invoked first to reproducenewParent({});constchild=newChild({foo: 'foo'});child.foo!=='foo';
The text was updated successfully, but these errors were encountered:
Found when looking into test failures for metal-drag-drop: deprecate/metal-drag-drop#8 (comment)
When creating a new instance of class that extends from State, a flag is set on the constructor to indicate that has configured the state 2c50c73#diff-0aee89f1c625f93fd4bfd8a5e3bbfb99R275.
However, when another class uses this class as a parent, that flag will already be set, and the configuration is not set up properly.
The text was updated successfully, but these errors were encountered: