Here's the code snippet I'm working with:
/**
This class blah blah...
@constructor
**/
my.namespace.ClassA = function(type)
{
/**
This function performs an action
**/
this.doSomething = function(param){
}
}
The class will be included in the generated documentation, but not the function. Is there a method to inform JSDoc (3) that this is a method of the class ClassA
?