(cwd: string)
| 439 | const semanticDiffAvailabilityCache = new Map<string, Promise<SemanticDiffAvailability>>(); |
| 440 | |
| 441 | const createSemanticDiffRuntime = (cwd: string) => ({ |
| 442 | ...createDefaultSemanticDiffRuntime(), |
| 443 | cwd, |
| 444 | }); |
| 445 | |
| 446 | const getSemanticDiffAvailabilityForCwd = (cwd: string): Promise<SemanticDiffAvailability> => { |
| 447 | const cached = semanticDiffAvailabilityCache.get(cwd); |
no test coverage detected