* Advances time forward to the next due timer until there are no pending timers remaining. * If the timers create additional timers, they will be run too. If there is an interval, * time will keep advancing forward until the interval is cleared. * * @example Usage * ```ts * import
()
| 772 | * ``` |
| 773 | */ |
| 774 | runAll() { |
| 775 | while (!dueTree.isEmpty()) { |
| 776 | this.next(); |
| 777 | } |
| 778 | } |
| 779 | |
| 780 | /** |
| 781 | * Advances time forward to the next due timer until there are no pending timers remaining. |
no test coverage detected