(tasks)
| 368 | var queue, cancelFn; |
| 369 | |
| 370 | function scheduler(tasks) { |
| 371 | // we make a copy since RAFScheduler mutates the state |
| 372 | // of the passed in array variable and this would be difficult |
| 373 | // to track down on the outside code |
| 374 | queue = queue.concat(tasks); |
| 375 | nextTick(); |
| 376 | } |
| 377 | |
| 378 | queue = scheduler.queue = []; |
| 379 |
nothing calls this directly
no test coverage detected