(filePath: string)
| 349 | * This is the preferred method for FileEditTool operations. |
| 350 | */ |
| 351 | export function readFileSyncCached(filePath: string): string { |
| 352 | const { content } = fileReadCache.readFile(filePath) |
| 353 | return content |
| 354 | } |
| 355 | |
| 356 | /** |
| 357 | * Writes to a file and flushes the file to disk |
no test coverage detected