can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / prototype_oblit.js
diff --git a/jsdoc-toolkit/app/test/prototype_oblit.js b/jsdoc-toolkit/app/test/prototype_oblit.js
new file mode 100644 (file)
index 0000000..6cfc39c
--- /dev/null
@@ -0,0 +1,13 @@
+/** @constructor */
+function Article() {
+}
+
+Article.prototype = {
+       /** instance get title */
+       getTitle: function(){
+       }
+}
+
+/** static get title */
+Article.getTitle = function(){
+}
\ No newline at end of file