travel/admin/node_modules/JSV/jsdoc-toolkit/app/test/inner.js

16 lines
220 B
JavaScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
/**
* @constructor
*/
function Outer() {
/**
* @constructor
*/
function Inner(name) {
/** The name of this. */
this.name = name;
}
this.open = function(name) {
return (new Inner(name));
}
}