/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

  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. this.open = function(name) {
  13. return (new Inner(name));
  14. }
  15. }