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
When parent has no such member, JSDuck prints a warning.
Useful if child class doesn't support everything parent supports. One should however avoid the use of this tag because following the Liskov substitution principle a subclass should support everything the parent class supports.
Example:
/** * An automatically numbered column. * * Note: this column can't be sorted. */Ext.define("Ext.grid.RowNumberer",{/** * @cfg sortable * @hide */});