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
Add supercalls and advices for getters and setters of ES5. Evaluate, if it should go in a separate module, or included in existing ones (most likely mini.js).
The text was updated successfully, but these errors were encountered:
Do you have docs on how to do getters and setters? I tried this, and it didn't work. It appears to me that DCL overwrites them with standard properties.
dcl(BaseClass, {
get x(){
console.log('getting x does not fire');
...
},
set x (_x){
console.log('setting x does not fire');
...
}
});
Add supercalls and advices for getters and setters of ES5. Evaluate, if it should go in a separate module, or included in existing ones (most likely
mini.js
).The text was updated successfully, but these errors were encountered: