projects
/
dygraphs.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
Closure fix; force cast from Element to Node.
[dygraphs.git]
/
jsdoc-toolkit
/
app
/
test
/
inner.js
Commit
Line
Data
629a09ae
DV
1
/**
2
* @constructor
3
*/
4
function Outer() {
5
/**
6
* @constructor
7
*/
8
function Inner(name) {
9
/** The name of this. */
10
this.name = name;
11
}
12
13
this.open = function(name) {
14
return (new Inner(name));
15
}
16
}