projects
/
dygraphs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
clear generated jsdoc; add script
[dygraphs.git]
/
jsdoc-toolkit
/
app
/
test
/
namespace_nested.js
1
/**
2
@namespace This is the first namespace.
3
*/
4
ns1
= {};
5
6
/**
7
This is the second namespace.
8
@namespace
9
*/
10
ns1
.
ns2
= {};
11
12
/**
13
This part of ns1.ns2
14
@constructor
15
*/
16
ns1
.
ns2
.
Function1
=
function
() {
17
};
18
19
ns1
.
staticFunction
=
function
() {
20
};
21
22
/** A static field in a namespace. */
23
ns1
.
ns2
.
staticField
=
1
;