jsdoc/plugins/test/fixtures/underscore.js
Jeff Williams 5f578e803b migrate from old, vendored Jasmine to jasmine package (#1602)
Plus some miscellaneous cleanup.
2019-01-21 19:38:07 -08:00

21 lines
461 B
JavaScript

/** This doclet will be shown by default, just like normal. */
function normal() {}
/** This doclet will be hidden by default because it begins with an underscore. */
function _hidden() {}
/**
* Klass class
* @class
*/
function Klass() {
/** This is a private property of the class, and should not. */
this._privateProp = null;
/**
* This is a property explicitly marked as private.
* @private
*/
this.privateProp = null;
}