(worktreePath: string, diffHash: string)
| 277 | |
| 278 | // Parsed diff cache methods |
| 279 | getParsedDiff<T>(worktreePath: string, diffHash: string): T | null { |
| 280 | const key = `${worktreePath}:${diffHash}`; |
| 281 | return this.parsedDiffCache.getIfHashMatches(key, diffHash) as T | null; |
| 282 | } |
| 283 | |
| 284 | setParsedDiff<T>(worktreePath: string, diffHash: string, parsed: T): void { |
| 285 | const key = `${worktreePath}:${diffHash}`; |
no test coverage detected