10 lines
131 B
JavaScript
10 lines
131 B
JavaScript
|
/**
|
||
|
* A test constructor.
|
||
|
* @constructor
|
||
|
* @ignore
|
||
|
*/
|
||
|
function Ignored() {
|
||
|
/** a method */
|
||
|
this.bar = function() {
|
||
|
}
|
||
|
}
|