(worktreePath: string, status: T)
| 267 | } |
| 268 | |
| 269 | setStatus<T>(worktreePath: string, status: T): void { |
| 270 | const hash = computeContentHash(JSON.stringify(status)); |
| 271 | this.statusCache.set(worktreePath, status, hash); |
| 272 | } |
| 273 | |
| 274 | invalidateStatus(worktreePath: string): void { |
| 275 | this.statusCache.delete(worktreePath); |
no test coverage detected