()
| 9613 | } |
| 9614 | |
| 9615 | private enforceCompletedReportCacheLimit(): void { |
| 9616 | while (this.completedReportsByTaskId.size > COMPLETED_REPORT_CACHE_MAX_ENTRIES) { |
| 9617 | const first = this.completedReportsByTaskId.keys().next(); |
| 9618 | if (first.done) break; |
| 9619 | this.completedReportsByTaskId.delete(first.value); |
| 9620 | } |
| 9621 | } |
| 9622 | |
| 9623 | private resolveWaiters( |
| 9624 | taskId: string, |
no test coverage detected