(key: string, controlPath: string)
| 350 | } |
| 351 | |
| 352 | private markControlPathReady(key: string, controlPath: string): void { |
| 353 | const readyPaths = this.readyControlPaths.get(key) ?? new Set<string>(); |
| 354 | readyPaths.add(controlPath); |
| 355 | this.readyControlPaths.set(key, readyPaths); |
| 356 | } |
| 357 | |
| 358 | private clearReadyControlPaths(key: string): void { |
| 359 | this.readyControlPaths.delete(key); |
no test coverage detected