Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/jsdoc-toolkit/app/test/namespace_nested.js')
-rw-r--r--tests/lib/jsdoc-toolkit/app/test/namespace_nested.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/lib/jsdoc-toolkit/app/test/namespace_nested.js b/tests/lib/jsdoc-toolkit/app/test/namespace_nested.js
deleted file mode 100644
index 394447c029..0000000000
--- a/tests/lib/jsdoc-toolkit/app/test/namespace_nested.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- @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;