()
| 1433 | |
| 1434 | #[test] |
| 1435 | fn wrong_postfix() { |
| 1436 | fails_with! { |
| 1437 | parser: PestParser, |
| 1438 | input: "a = { a& }", |
| 1439 | rule: Rule::grammar_rules, |
| 1440 | positives: vec![ |
| 1441 | Rule::opening_brace, |
| 1442 | Rule::closing_brace, |
| 1443 | Rule::sequence_operator, |
| 1444 | Rule::choice_operator, |
| 1445 | Rule::optional_operator, |
| 1446 | Rule::repeat_operator, |
| 1447 | Rule::repeat_once_operator |
| 1448 | ], |
| 1449 | negatives: vec![], |
| 1450 | pos: 7 |
| 1451 | }; |
| 1452 | } |
| 1453 | |
| 1454 | #[test] |
| 1455 | fn node_tag() { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…