Add an up-context position (predecessor). Up-context vertices are the predecessors where new content will be inserted after.
(&mut self, pos: Position<NodeId>)
| 432 | /// Up-context vertices are the predecessors where new content will be |
| 433 | /// inserted after. |
| 434 | pub fn add_up_context(&mut self, pos: Position<NodeId>) { |
| 435 | self.predecessors.push(pos); |
| 436 | } |
| 437 | |
| 438 | /// Add a down-context position (successor). |
| 439 | /// |