/tags/jsdoc_toolkit-1.4.0/test/data/allfuncs_option.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 22 lines · 17 code · 4 blank · 1 comment · 0 complexity · 6c8afbbd2223e3bcd3792666967d311e MD5 · raw file
- function _Action() {
- this._index = [];
-
- /** passthe action to another object */
- this.passTo = function(obj) {
- obj.actOn(this);
- }
-
- this._debug = function() {
- new _Debugger(this).report();
- }
-
- this.execute = function() {
- this._index.push(action);
- }
- }
- _Log = {
- file: "log.txt",
- dump: function(msg){
- }
- };