()
| 30 | } |
| 31 | |
| 32 | async stop() { |
| 33 | this.tasks.length = 0; |
| 34 | this.intervals.forEach(clearInterval); |
| 35 | this.intervals = []; |
| 36 | if (this.running) { |
| 37 | await this.running; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | private async runNext() { |
| 42 | if (this.running) return; |
nothing calls this directly
no outgoing calls
no test coverage detected