diff options
author | Aleksey Kladov <[email protected]> | 2020-07-31 17:30:02 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-07-31 17:30:02 +0100 |
commit | d21b5db891d605c7c10118daca1f06c09c14b07e (patch) | |
tree | 526254a25982cbf627b40b25a46b719602db977e /xtask/src | |
parent | 91781c7ce8201b28afd56b4e35eba47e076a8498 (diff) |
fixup! Finalize Path grammar
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/codegen/rust.ungram | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram index 8acd02f75..cb4cd49fe 100644 --- a/xtask/src/codegen/rust.ungram +++ b/xtask/src/codegen/rust.ungram | |||
@@ -3,7 +3,7 @@ Path = | |||
3 | 3 | ||
4 | PathSegment = | 4 | PathSegment = |
5 | '::' | 'crate' | 'self' | 'super' | 5 | '::' | 'crate' | 'self' | 'super' |
6 | | (NameRef ('::'? GenericArgList)?) | 6 | | NameRef GenericArgList? |
7 | | NameRef ParamList RetType? | 7 | | NameRef ParamList RetType? |
8 | | '<' PathType ('as' PathType)? '>' | 8 | | '<' PathType ('as' PathType)? '>' |
9 | 9 | ||