| 129 | } |
| 130 | |
| 131 | export class InMemoryGraphStorage implements GraphStorage { |
| 132 | #vertices: Map<ElementId, StoredVertex>; |
| 133 | #edges: Map<ElementId, StoredEdge>; |
| 134 | #incomingEdges: Map<ElementId, StoredEdge[]>; |
nothing calls this directly
no outgoing calls
no test coverage detected