can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / memberof.js
1 /** @constructor */
2 pack = function() {
3 this.init = function(){}
4 function config(){}
5 }
6
7 pack.build = function(task) {};
8
9 /** @memberOf pack */
10 pack.install = function() {}
11
12 /** @memberOf pack */
13 pack.install.overwrite = function() {}
14
15 /** @memberOf pack */
16 clean = function() {}
17
18 /** @memberOf pack-config */
19 install = function() {};