Leaflet / Leafdoc

A lightweight NaturalDocs-like LeafletJS-style documentation generator
54 stars 19 forks source link

Multiple inheritance breaks inherited documentables #60

Open IvanSanchez opened 2 years ago

IvanSanchez commented 2 years ago

Specifying more than one @inherits directive will break the inherited properties/methods/etc on the output. e.g. ...

@class foo
@inherits bar
@inherits quux

@class bar
@method barbar()

... the inherited method barbar will not show in the HTML Docs for the foo class.