(state)
| 15133 | } |
| 15134 | |
| 15135 | function scheduleProcessQueue(state) { |
| 15136 | if (state.processScheduled || !state.pending) return; |
| 15137 | state.processScheduled = true; |
| 15138 | nextTick(function() { processQueue(state); }); |
| 15139 | } |
| 15140 | |
| 15141 | function Deferred() { |
| 15142 | this.promise = new Promise(); |
no test coverage detected