(key: string, controlPath: string)
| 346 | } |
| 347 | |
| 348 | private isControlPathReady(key: string, controlPath: string): boolean { |
| 349 | return this.readyControlPaths.get(key)?.has(controlPath) === true; |
| 350 | } |
| 351 | |
| 352 | private markControlPathReady(key: string, controlPath: string): void { |
| 353 | const readyPaths = this.readyControlPaths.get(key) ?? new Set<string>(); |
no test coverage detected