* Reset the scheduler's state.
()
| 2293 | * Reset the scheduler's state. |
| 2294 | */ |
| 2295 | function resetSchedulerState () { |
| 2296 | queue.length = 0; |
| 2297 | has = {}; |
| 2298 | if (process.env.NODE_ENV !== 'production') { |
| 2299 | circular = {}; |
| 2300 | } |
| 2301 | waiting = flushing = false; |
| 2302 | } |
| 2303 | |
| 2304 | /** |
| 2305 | * Flush both queues and run the watchers. |
no outgoing calls
no test coverage detected