/branches/jsdoc_tk_gui/setup/test/data/underscore.js

http://jsdoc-toolkit.googlecode.com/ · JavaScript · 17 lines · 13 code · 4 blank · 0 comment · 0 complexity · 5e5fd263c31dd5a0ed78c21573add907 MD5 · raw file

  1. framework.Action = function() {
  2. this._index = [];
  3. this.passTo = function(obj) {
  4. obj.actOn(this);
  5. }
  6. this._debug = function() {
  7. new _Debugger(this).report();
  8. }
  9. this.execute = function() {
  10. this._index.push(action);
  11. }
  12. }
  13. function _Debugger(out){}