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
the 'missing-component-documentation-rule' breaks, because it expects only properties and not a spread operator with super calls.
How to possibly fix it:
in missing-component-documentation-rule.ts, if isComponentClass(node) is true, the base class name can be found using node.superClass; however, if mixin composition is used, the base class could be retrieved by recursively looking at node.superClass.arguments (until is empty?)
how to retrieve the class instance from class name? how to retrieve the events?
The text was updated successfully, but these errors were encountered:
If a base class declares
and the derived class does an override like
the 'missing-component-documentation-rule' breaks, because it expects only properties and not a spread operator with super calls.
How to possibly fix it:
in missing-component-documentation-rule.ts, if
isComponentClass(node)
is true, the base class name can be found usingnode.superClass
; however, if mixin composition is used, the base class could be retrieved by recursively looking atnode.superClass.arguments
(until is empty?)how to retrieve the class instance from class name? how to retrieve the events?
The text was updated successfully, but these errors were encountered: