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
We still do have a few getXXX() function that are just here to return a value aggregated from other values (or queried in sub objects). From a pure ES5 logic they probably should be ES5 getters instead of getXXX() methods?
The text was updated successfully, but these errors were encountered:
Widget.getChildren() is hard to change, because it looks in this.containerNode as opposed to this.children which looks under this. So it can't be renamed to this.children but maybe this.widgetChildren or something?
I suppose Widget.getParent() could be renamed to Widget.parentWidget.
We still do have a few getXXX() function that are just here to return a value aggregated from other values (or queried in sub objects). From a pure ES5 logic they probably should be ES5 getters instead of getXXX() methods?
The text was updated successfully, but these errors were encountered: