mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-04-03 08:41:07 +00:00
test for the various kinds of ids
This commit is contained in:
parent
4c74cc6873
commit
09f00f7a56
@ -63,3 +63,18 @@ fn code_forgot_comma() {
|
|||||||
// intentionally forget the comma token; this is more of a test of `test`
|
// intentionally forget the comma token; this is more of a test of `test`
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn various_kinds_of_ids() {
|
||||||
|
test("foo<T<'a,U>>", vec![
|
||||||
|
("~~~ ", MacroId("foo")),
|
||||||
|
(" ~ ", LessThan),
|
||||||
|
(" ~ ", MacroId("T")),
|
||||||
|
(" ~ ", LessThan),
|
||||||
|
(" ~~ ", Lifetime("'a")),
|
||||||
|
(" ~ ", Comma),
|
||||||
|
(" ~ ", Id("U")),
|
||||||
|
(" ~ ", GreaterThan),
|
||||||
|
(" ~", GreaterThan),
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user