Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/jsdoc-toolkit/app/test/prototype.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/jsdoc-toolkit/app/test/prototype.js')
-rwxr-xr-xutils/jsdoc-toolkit/app/test/prototype.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/utils/jsdoc-toolkit/app/test/prototype.js b/utils/jsdoc-toolkit/app/test/prototype.js
deleted file mode 100755
index 1147008..0000000
--- a/utils/jsdoc-toolkit/app/test/prototype.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/** @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