mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
oops, forgot to commit a new test fixture (#574)
This commit is contained in:
parent
ce75a89955
commit
2a61c9f613
14
test/fixtures/also2.js
vendored
Normal file
14
test/fixtures/also2.js
vendored
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
Loading…
x
Reference in New Issue
Block a user