diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-07-31 20:47:23 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-31 20:47:23 +0100 |
commit | 1914d0aa7b5518c743e7403da6d7eea3fe28e955 (patch) | |
tree | ae48a497fbe6ef49c5b8a9a0431c778953c428a0 /xtask/src/codegen/rust.ungram | |
parent | 215b9b9cccd66c9e9413e7581931371daa0c94e5 (diff) | |
parent | 22d295ceaaee76dbd555cdeedc0ed7578e66279d (diff) |
Merge #5633
5633: Rename DotDotPat -> RestPat 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.ungram | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram index 25d6f7a20..02f5aa732 100644 --- a/xtask/src/codegen/rust.ungram +++ b/xtask/src/codegen/rust.ungram | |||
@@ -498,7 +498,7 @@ TypeBound = | |||
498 | Pat = | 498 | Pat = |
499 | IdentPat | 499 | IdentPat |
500 | | BoxPat | 500 | | BoxPat |
501 | | DotDotPat | 501 | | RestPat |
502 | | LiteralPat | 502 | | LiteralPat |
503 | | MacroPat | 503 | | MacroPat |
504 | | OrPat | 504 | | OrPat |
@@ -560,7 +560,7 @@ OrPat = | |||
560 | BoxPat = | 560 | BoxPat = |
561 | 'box' Pat | 561 | 'box' Pat |
562 | 562 | ||
563 | DotDotPat = | 563 | RestPat = |
564 | '..' | 564 | '..' |
565 | 565 | ||
566 | MacroPat = | 566 | MacroPat = |