| 12 | * This eliminates redundant file reads in FileEditTool operations. |
| 13 | */ |
| 14 | class FileReadCache { |
| 15 | private cache = new Map<string, CachedFileData>() |
| 16 | private readonly maxCacheSize = 1000 |
| 17 |
nothing calls this directly
no outgoing calls
no test coverage detected