()
| 508 | // ------------------------------------------------------------------------- |
| 509 | |
| 510 | fn make_leaf() -> Leaf { |
| 511 | Leaf::new( |
| 512 | LeafId::new(NodeId::new(1), 0), |
| 513 | BranchId::new(NodeId::new(1), 0), |
| 514 | TokenKind::Word, |
| 515 | 0..5, |
| 516 | ) |
| 517 | } |
| 518 | |
| 519 | #[test] |
| 520 | fn test_leaf_new() { |
no outgoing calls