underscore.js 476 B

12345678910111213141516171819202122
  1. 'use strict';
  2. /** This doclet will be shown by default, just like normal. */
  3. function normal() {}
  4. /** This doclet will be hidden by default because it begins with an underscore. */
  5. function _hidden() {}
  6. /**
  7. * Klass class
  8. * @class
  9. */
  10. function Klass() {
  11. /** This is a private property of the class, and should not. */
  12. this._privateProp = null;
  13. /**
  14. * This is a property explicitly marked as private.
  15. * @private
  16. */
  17. this.privateProp = null;
  18. }