| 29 | * Manages in-memory file tree structure |
| 30 | */ |
| 31 | export class FileSystemStore { |
| 32 | private nodes: Map<string, FileNode>; |
| 33 | private pathIndex: Map<string, string>; |
| 34 | private rootId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected