/tags/jsdoc_toolkit-1.4.0/test/data/underscore.js
JavaScript | 17 lines | 13 code | 4 blank | 0 comment | 0 complexity | 5e5fd263c31dd5a0ed78c21573add907 MD5 | raw file
- framework.Action = function() {
- this._index = [];
-
- this.passTo = function(obj) {
- obj.actOn(this);
- }
-
- this._debug = function() {
- new _Debugger(this).report();
- }
-
- this.execute = function() {
- this._index.push(action);
- }
- }
- function _Debugger(out){}