/trunk/jsdoc-toolkit/app/test/namespace_nested.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 23 lines · 7 code · 4 blank · 12 comment · 0 complexity · f406410dfd390987ec22f929fe5811d1 MD5 · raw file
- /**
- @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;