Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/jsdoc-toolkit/app/test/namespace_nested.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/jsdoc-toolkit/app/test/namespace_nested.js')
-rw-r--r--utils/jsdoc-toolkit/app/test/namespace_nested.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/utils/jsdoc-toolkit/app/test/namespace_nested.js b/utils/jsdoc-toolkit/app/test/namespace_nested.js
new file mode 100644
index 0000000..46cafa2
--- /dev/null
+++ b/utils/jsdoc-toolkit/app/test/namespace_nested.js
@@ -0,0 +1,23 @@
+/**
+ @namespace This is the first namespace.
+*/
+ns1 = {};
+
+/**
+ This is the second namespace.
+ @namespace
+*/
+ns1.ns2 = {};
+
+/**
+ This part of ns1.ns2
+ @constructor
+*/
+ns1.ns2.Function1 = function() {
+};
+
+ns1.staticFunction = function() {
+};
+
+/** A static field in a namespace. */
+ns1.ns2.staticField = 1;