(callback: () => void)
| 23 | }; |
| 24 | |
| 25 | export function scheduleWork(callback: () => void) { |
| 26 | taskQueue.push(callback); |
| 27 | channel.port2.postMessage(null); |
| 28 | } |
| 29 | |
| 30 | function handleErrorInNextTick(error: any) { |
| 31 | setTimeout(() => { |
nothing calls this directly
no test coverage detected