(state)
| 13329 | } |
| 13330 | |
| 13331 | function scheduleProcessQueue(state) { |
| 13332 | if (state.processScheduled || !state.pending) return; |
| 13333 | state.processScheduled = true; |
| 13334 | nextTick(function() { processQueue(state); }); |
| 13335 | } |
| 13336 | |
| 13337 | function Deferred() { |
| 13338 | this.promise = new Promise(); |
no test coverage detected