jsdoc 0.19.0

JsDoc parser writen in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
define(function(
/**
 * A module representing a shirt.
 * @exports my/shirt
 * @version 1.0
 */
shirtModule) {
    /** A property of the module. */
    shirtModule.color = 'black';

    /** @constructor */
    shirtModule.Turtleneck = function(size) {
        /** A property of the class. */
        this.size = size;
    };

    return shirtModule;
});