aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/ignore.js
blob: d3fac9ed5ab2bcc6354c6f4dab98795a2030fa08 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * A test constructor.
 * @constructor
 * @ignore
 */
function Ignored() {
	/** a method */
    this.bar = function() {
    }
}