/trunk/jsdoc-toolkit/app/test/inner.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 16 lines · 8 code · 1 blank · 7 comment · 0 complexity · 34ba68f7b0c903a7f90fc7f2c6634d9c MD5 · raw file
- /**
- * @constructor
- */
- function Outer() {
- /**
- * @constructor
- */
- function Inner(name) {
- /** The name of this. */
- this.name = name;
- }
- this.open = function(name) {
- return (new Inner(name));
- }
- }