| 7 | } |
| 8 | |
| 9 | export class MessageTree { |
| 10 | private messageMap: Map<string, ChatMessage> = new Map() |
| 11 | private root: MessageTreeNode | null = null |
| 12 | private currentPath: string[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected