aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-30 19:27:39 +0100
committerAleksey Kladov <[email protected]>2020-07-30 19:38:15 +0100
commitfbe60a2e284035d16c2a1ee743ee88db418689aa (patch)
treec09cf0434ecf282cf1763d34cf838952db105e0a /xtask
parentfcce07d2d1b07cf4578af65b00a243e743a67f05 (diff)
simplify
Diffstat (limited to 'xtask')
-rw-r--r--xtask/src/codegen/rust.ungram5
1 files changed, 2 insertions, 3 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram
index 42ef2fb82..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 =