(worktreePath: string)
| 263 | |
| 264 | // Status cache methods |
| 265 | getStatus<T>(worktreePath: string): T | null { |
| 266 | return this.statusCache.get(worktreePath) as T | null; |
| 267 | } |
| 268 | |
| 269 | setStatus<T>(worktreePath: string, status: T): void { |
| 270 | const hash = computeContentHash(JSON.stringify(status)); |
no test coverage detected