(change: Option<Hash>, pos: u64)
| 291 | // Test Helpers |
| 292 | |
| 293 | fn make_position(change: Option<Hash>, pos: u64) -> Position<Option<Hash>> { |
| 294 | Position { |
| 295 | change, |
| 296 | pos: ChangePosition::new(pos), |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | fn make_internal_vertex(change: NodeId, start: u64, end: u64) -> GraphNode<NodeId> { |
| 301 | GraphNode { |
no outgoing calls