(fn, delay)
| 1147 | } |
| 1148 | |
| 1149 | function setTimeout(fn, delay) { |
| 1150 | return delayedFunctionScheduler.scheduleFunction(fn, delay, argSlice(arguments, 2)); |
| 1151 | } |
| 1152 | |
| 1153 | function clearTimeout(id) { |
| 1154 | return delayedFunctionScheduler.removeFunctionWithId(id); |
no test coverage detected