can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / namespace_nested.js
CommitLineData
629a09ae
DV
1/**
2 @namespace This is the first namespace.
3*/
4ns1 = {};
5
6/**
7 This is the second namespace.
8 @namespace
9*/
10ns1.ns2 = {};
11
12/**
13 This part of ns1.ns2
14 @constructor
15*/
16ns1.ns2.Function1 = function() {
17};
18
19ns1.staticFunction = function() {
20};
21
22/** A static field in a namespace. */
23ns1.ns2.staticField = 1;