static_this.js 185 B

12345678910111213
  1. /** the parent */
  2. var box = {};
  3. /** @namespace */
  4. box.holder = {}
  5. box.holder.foo = function() {
  6. /** the counter */
  7. this.counter = 1;
  8. }
  9. box.holder.foo();
  10. print(box.holder.counter);