(worktreePath: string)
| 327 | |
| 328 | // Invalidate all caches for a worktree |
| 329 | invalidateWorktree(worktreePath: string): void { |
| 330 | this.statusCache.delete(worktreePath); |
| 331 | this.parsedDiffCache.invalidateByPrefix(worktreePath); |
| 332 | this.fileContentsCache.invalidateByPrefix(worktreePath); |
| 333 | } |
| 334 | |
| 335 | // Get statistics for monitoring |
| 336 | getStats(): { |
nothing calls this directly
no test coverage detected