Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/jsdoc-toolkit/app/test/static_this.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/jsdoc-toolkit/app/test/static_this.js')
-rwxr-xr-xutils/jsdoc-toolkit/app/test/static_this.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/utils/jsdoc-toolkit/app/test/static_this.js b/utils/jsdoc-toolkit/app/test/static_this.js
deleted file mode 100755
index 9407b20..0000000
--- a/utils/jsdoc-toolkit/app/test/static_this.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/** the parent */
-var box = {};
-
-/** @namespace */
-box.holder = {}
-
-box.holder.foo = function() {
- /** the counter */
- this.counter = 1;
-}
-
-box.holder.foo();
-print(box.holder.counter);