(f:Function, interval:number)
| 95 | } |
| 96 | |
| 97 | public setInterval(f:Function, interval:number):number { |
| 98 | var myKey = this._key++; |
| 99 | this._timers.push(new RuntimeTimer('interval', interval, myKey, f)); |
| 100 | return myKey; |
| 101 | } |
| 102 | |
| 103 | public setTimeout(f:Function, timeout:number):number { |
| 104 | var myKey = this._key++; |
no outgoing calls
no test coverage detected