mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
22 lines
348 B
JavaScript
22 lines
348 B
JavaScript
// used to test jsdoc/augments module directly
|
|
|
|
/**
|
|
* @constructor
|
|
* @classdesc Base class
|
|
*/
|
|
var Base = function() {
|
|
/** member */
|
|
this.test1 = "base";
|
|
/** another member */
|
|
this.test2 = null;
|
|
};
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends Base
|
|
* @classdesc Extension of Base
|
|
*/
|
|
var Derived = function() {
|
|
this.test1 = "derived";
|
|
};
|