mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
The second half of the first phase of the testing framework upgrade. This finishes moving the exisintg tests to jasmine and the new test directory structure
29 lines
387 B
JavaScript
29 lines
387 B
JavaScript
/** @constructor */
|
|
function Thingy() {
|
|
|
|
/** @access private */
|
|
var foo = 0;
|
|
|
|
/** @access protected */
|
|
this._bar = 1;
|
|
|
|
/** @access public */
|
|
this.pez = 2;
|
|
|
|
}
|
|
|
|
// same as...
|
|
|
|
/** @constructor */
|
|
function OtherThingy() {
|
|
|
|
/** @private */
|
|
var foo = 0;
|
|
|
|
/** @protected */
|
|
this._bar = 1;
|
|
|
|
/** @public */
|
|
this.pez = 2;
|
|
|
|
} |