aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/codegen/rust.ungram
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-07-30 19:39:09 +0100
committerGitHub <[email protected]>2020-07-30 19:39:09 +0100
commit6f5b53013c54fa6d8429b717998cdb77a4d68b2c (patch)
treec09cf0434ecf282cf1763d34cf838952db105e0a /xtask/src/codegen/rust.ungram
parente28ea81b2b68a61b5c5eec3c815172b17256a25f (diff)
parentfbe60a2e284035d16c2a1ee743ee88db418689aa (diff)
Merge #5611
5611: Finalize attribute grammar r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask/src/codegen/rust.ungram')
-rw-r--r--xtask/src/codegen/rust.ungram10
1 files changed, 3 insertions, 7 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram
index a97cc80e9..8c4f953b0 100644
--- a/xtask/src/codegen/rust.ungram
+++ b/xtask/src/codegen/rust.ungram
@@ -54,9 +54,8 @@ Abi =
54 54
55ParamList = 55ParamList =
56 '('( 56 '('(
57 (Param (',' Param)* ','?)? 57 SelfParam
58 | SelfParam ','? 58 | (SelfParam ',')? (Param (',' Param)* ','?)?
59 | SelfParam ',' (Param (',' Param)* ','?)
60 )')' 59 )')'
61 60
62SelfParam = 61SelfParam =
@@ -182,10 +181,7 @@ Visibility =
182 ')')? 181 ')')?
183 182
184Attr = 183Attr =
185 '#' '!'? '[' Path ('=' input:AttrInput)? ']' 184 '#' '!'? '[' Path ('=' Literal | TokenTree)? ']'
186
187AttrInput =
188 Literal | TokenTree
189 185
190ParenType = 186ParenType =
191 '(' TypeRef ')' 187 '(' TypeRef ')'