Add a resolved successor vertex for the current insertion.
(&mut self, node: GraphNode<NodeId>)
| 450 | |
| 451 | /// Add a resolved successor vertex for the current insertion. |
| 452 | pub fn add_down_context_vertex(&mut self, node: GraphNode<NodeId>) { |
| 453 | self.successor_vertices.push(node); |
| 454 | } |
| 455 | |
| 456 | /// Get all up-context positions. |
| 457 | pub fn predecessors(&self) -> &[Position<NodeId>] { |
no test coverage detected