()
| 193 | } |
| 194 | |
| 195 | private cleanup(): void { |
| 196 | if (this.cancellationUnsubscribe) { |
| 197 | this.cancellationUnsubscribe() |
| 198 | this.cancellationUnsubscribe = null |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | private hasWork(): boolean { |
| 203 | return this.readyQueue.length > 0 || this.executing.size > 0 |
no outgoing calls
no test coverage detected