| 10 | * This cache optimizes subsequent searches by leveraging previously computed results. |
| 11 | */ |
| 12 | export class ResultCache { |
| 13 | private readonly cache: Map<string, string[]>; |
| 14 | private hits = 0; |
| 15 | private misses = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected