can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / prototype.js
diff --git a/jsdoc-toolkit/app/test/prototype.js b/jsdoc-toolkit/app/test/prototype.js
new file mode 100644 (file)
index 0000000..1147008
--- /dev/null
@@ -0,0 +1,17 @@
+/** @constructor */
+function Article() {
+}
+
+Article.prototype.init = function(title) {
+       /** the instance title */
+       this.title = title;
+       
+       /** the static counter */
+       Article.counter = 1;
+}
+
+a = new Article();
+a.Init("my title");
+
+print(a.title);
+print(Article.counter);
\ No newline at end of file