can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / memberof.js
diff --git a/jsdoc-toolkit/app/test/memberof.js b/jsdoc-toolkit/app/test/memberof.js
new file mode 100644 (file)
index 0000000..883bbde
--- /dev/null
@@ -0,0 +1,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() {};