Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/jsdoc-toolkit/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() {
    }
}