Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/jsdoc-toolkit/app/test/memberof.js
blob: 883bbdeb0d2952f7950e047a99a007362b2e748e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @constructor */
pack = function() {
	this.init = function(){}
	function config(){}
}
 
 pack.build = function(task) {};

/** @memberOf pack */
pack.install = function() {}

/** @memberOf pack */
pack.install.overwrite = function() {}

/** @memberOf pack */
clean = function() {}

/** @memberOf pack-config */
install = function() {};