(tasks)
| 386 | var queue, cancelFn; |
| 387 | |
| 388 | function scheduler(tasks) { |
| 389 | // we make a copy since RAFScheduler mutates the state |
| 390 | // of the passed in array variable and this would be difficult |
| 391 | // to track down on the outside code |
| 392 | queue = queue.concat(tasks); |
| 393 | nextTick(); |
| 394 | } |
| 395 | |
| 396 | queue = scheduler.queue = []; |
| 397 |
nothing calls this directly
no test coverage detected