()
| 171 | } |
| 172 | |
| 173 | function evictUntilUnderCap(): void { |
| 174 | while (boards.size > MAX_BOARDS) { |
| 175 | if (!evictOne()) break; |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | function findActiveBoardForSourceDir(sourceDir: string): Board | null { |
| 180 | for (const b of boards.values()) { |
no test coverage detected