jsdoc/test/fixtures/abstracttag.js
Jeff Williams 48e6c392d5 huge whitespace cleanup
- remove all trailing whitespace
- for consistency, replace all tabs with spaces
2014-03-03 07:43:01 -08:00

17 lines
185 B
JavaScript

/** @constructor */
function Thingy() {
/** @abstract */
this.pez = 2;
}
// same as...
/** @constructor */
function OtherThingy() {
/** @virtual */
this.pez = 2;
}