JSDoc Filter
The JSDoc Filter in JS/UML parses JavaScript based on JSDoc style commented JavaScript.
Packages
Classes
classes are defined with the @class tag
classes can be designated as @abstract. The @abstract is not supported in JSDoc.
superclasses can be designated with the @extends tag
Properties
Methods
defined and named by the @method, @function, @func tags
support for @static and @abstract
visibility restricted via @private or @protected
@param tags define parameter names and types
the @return tag defines the return type
|