( worktreePath: string, filePath: string, contentHash: string, )
| 298 | } |
| 299 | |
| 300 | getFileContentIfHashMatches( |
| 301 | worktreePath: string, |
| 302 | filePath: string, |
| 303 | contentHash: string, |
| 304 | ): string | null { |
| 305 | const key = `${worktreePath}:${filePath}`; |
| 306 | return this.fileContentsCache.getIfHashMatches(key, contentHash); |
| 307 | } |
| 308 | |
| 309 | setFileContent( |
| 310 | worktreePath: string, |
nothing calls this directly
no test coverage detected