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