Add a resolved predecessor vertex for the current insertion.
(&mut self, node: GraphNode<NodeId>)
| 445 | |
| 446 | /// Add a resolved predecessor vertex for the current insertion. |
| 447 | pub fn add_up_context_vertex(&mut self, node: GraphNode<NodeId>) { |
| 448 | self.predecessor_vertices.push(node); |
| 449 | } |
| 450 | |
| 451 | /// Add a resolved successor vertex for the current insertion. |
| 452 | pub fn add_down_context_vertex(&mut self, node: GraphNode<NodeId>) { |
no test coverage detected