mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
19 lines
330 B
JavaScript
19 lines
330 B
JavaScript
// 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() {
|
|
}
|