UNPKG

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