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
Some instance methods do not seem to be recognized by the parser. I haven't been able to detect a precise patter, but there's an example below. I have found that in some cases adding the @instance and @memberof directives helped to solve this issue but not in the case below.
In the documentation generated by documentationjs, the Lexer.end() method is assigned a global scope, and not associated with either the Lexer class or the lexer module.
Removing the @member lexer directive on Lexer() will result in the Lexer.end() instance being recognized, but then Lexer, of course, Lexer doesn't show as a member of the lexer module.
The text was updated successfully, but these errors were encountered:
Looks like this is this reported issue, that memberof does not cascade down to other members. I can't test this right now entirely, but want to try
* @memberof lexer.Lexer
Instead for the Lexer.prototype.end comment? Since the full namespace of Lexer is lexer.Lexer, a memberof reference to the complete name may work properly, and also aligns to how JSDoc works.
Some instance methods do not seem to be recognized by the parser. I haven't been able to detect a precise patter, but there's an example below. I have found that in some cases adding the
@instance
and@memberof
directives helped to solve this issue but not in the case below.In the documentation generated by documentationjs, the
Lexer.end()
method is assigned a global scope, and not associated with either theLexer
class or thelexer
module.Removing the
@member lexer
directive onLexer()
will result in theLexer.end()
instance being recognized, but thenLexer
, of course,Lexer
doesn't show as a member of thelexer
module.The text was updated successfully, but these errors were encountered: