(worktreePath: string, filePath: string)
| 293 | |
| 294 | // File contents cache methods |
| 295 | getFileContent(worktreePath: string, filePath: string): string | null { |
| 296 | const key = `${worktreePath}:${filePath}`; |
| 297 | return this.fileContentsCache.get(key); |
| 298 | } |
| 299 | |
| 300 | getFileContentIfHashMatches( |
| 301 | worktreePath: string, |
no test coverage detected