jsdoc 0.15.0

JsDoc parser writen in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** @class */
function BowlingAlley() {
    this._lanes = 0;
}

/**
 * Add a lane to the bowling alley.
 * @also
 * Add the specified number of lanes to the bowling alley.
 * @param {number} [lanes=1] - The number of lanes to add.
 */
BowlingAlley.prototype.addLanes = function addLanes(lanes) {
    this._lanes += (typeof lanes === undefined) ? 1 : lanes;
};