can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / test / inner.js
CommitLineData
629a09ae
DV
1/**
2 * @constructor
3 */
4function 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}