(id:number)
| 107 | } |
| 108 | |
| 109 | public clearInterval(id:number):void { |
| 110 | for (var i = 0; i < this._timers.length; i++) { |
| 111 | if (this._timers[i].type === 'interval' && |
| 112 | this._timers[i].key === id) { |
| 113 | this._timers.splice(i, 1); |
| 114 | return; |
| 115 | } |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | public clearTimeout(id:number):void { |
| 120 | for (var i = 0; i < this._timers.length; i++) { |
no outgoing calls
no test coverage detected