Documenting member functions with JSDoc
问题 I have something like this: /** Diese Klasse bla bla... @constructor **/ my.namespace.ClassA = function(type) { /** This function does something **/ this.doSomething = function(param){ } } The class will get listed in the generated documentation. The function won't. Is there a way to tell JSDoc (3) that this is a member function of the class ClassA ? 回答1: JSDoc needs some additional information to recognize the function as member function: /** * Diese Klasse bla bla... * @constructor */ my