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