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