aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/codegen
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-07-31 19:09:09 +0100
committerAleksey Kladov <[email protected]>2020-07-31 19:12:10 +0100
commit98181087984157e27faba0b969e384f3c62c39d5 (patch)
tree0032223efeefca76340fb0a97f6f12d0e432a2a9 /xtask/src/codegen
parent6791eb9685375da94556bb910ea71f78b08be5ec (diff)
Rename BindPat -> IdentPat
Diffstat (limited to 'xtask/src/codegen')
-rw-r--r--xtask/src/codegen/rust.ungram4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram
index 7c814240a..7685f4f06 100644
--- a/xtask/src/codegen/rust.ungram
+++ b/xtask/src/codegen/rust.ungram
@@ -497,7 +497,7 @@ TypeBound =
497| '?'? Type 497| '?'? Type
498 498
499Pat = 499Pat =
500 BindPat 500 IdentPat
501| BoxPat 501| BoxPat
502| DotDotPat 502| DotDotPat
503| LiteralPat 503| LiteralPat
@@ -516,7 +516,7 @@ Pat =
516LiteralPat = 516LiteralPat =
517 Literal 517 Literal
518 518
519BindPat = 519IdentPat =
520 Attr* 'ref'? 'mut'? Name ('@' Pat)? 520 Attr* 'ref'? 'mut'? Name ('@' Pat)?
521 521
522WildcardPat = 522WildcardPat =