diff options
author | Aleksey Kladov <[email protected]> | 2020-07-31 19:09:09 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-07-31 19:12:10 +0100 |
commit | 98181087984157e27faba0b969e384f3c62c39d5 (patch) | |
tree | 0032223efeefca76340fb0a97f6f12d0e432a2a9 /xtask/src/codegen | |
parent | 6791eb9685375da94556bb910ea71f78b08be5ec (diff) |
Rename BindPat -> IdentPat
Diffstat (limited to 'xtask/src/codegen')
-rw-r--r-- | xtask/src/codegen/rust.ungram | 4 |
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 | ||
499 | Pat = | 499 | Pat = |
500 | BindPat | 500 | IdentPat |
501 | | BoxPat | 501 | | BoxPat |
502 | | DotDotPat | 502 | | DotDotPat |
503 | | LiteralPat | 503 | | LiteralPat |
@@ -516,7 +516,7 @@ Pat = | |||
516 | LiteralPat = | 516 | LiteralPat = |
517 | Literal | 517 | Literal |
518 | 518 | ||
519 | BindPat = | 519 | IdentPat = |
520 | Attr* 'ref'? 'mut'? Name ('@' Pat)? | 520 | Attr* 'ref'? 'mut'? Name ('@' Pat)? |
521 | 521 | ||
522 | WildcardPat = | 522 | WildcardPat = |