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
// test to see that we can @augment multiple things (code allows for it)
/** @class */
function Foo() {
}
/** A method. */
Foo.prototype.method1 = function () {};

/** @class */
function Bar() {
}
/** Another method. */
Bar.prototype.method2 = function () {}

/** @class
 * @augments Foo
 * @augments Bar */
function FooBar() {
}