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