(fn, delay)
| 957 | } |
| 958 | |
| 959 | function setTimeout(fn, delay) { |
| 960 | return delayedFunctionScheduler.scheduleFunction(fn, delay, argSlice(arguments, 2)); |
| 961 | } |
| 962 | |
| 963 | function clearTimeout(id) { |
| 964 | return delayedFunctionScheduler.removeFunctionWithId(id); |
no test coverage detected