(handler, args)
| 3 | |
| 4 | var tasks = (function () { |
| 5 | function Task(handler, args) { |
| 6 | this.handler = handler; |
| 7 | this.args = args; |
| 8 | } |
| 9 | Task.prototype.run = function () { |
| 10 | // See steps in section 5 of the spec. |
| 11 | if (typeof this.handler === "function") { |
nothing calls this directly
no outgoing calls
no test coverage detected