mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
Rename DotDotPat -> RestPat
This commit is contained in:
parent
215b9b9ccc
commit
22d295ceaa
14 changed files with 55 additions and 55 deletions
|
@ -128,7 +128,7 @@ pub(crate) const KINDS_SRC: KindsSrc = KindsSrc {
|
|||
"BOX_PAT",
|
||||
"IDENT_PAT",
|
||||
"WILDCARD_PAT",
|
||||
"DOT_DOT_PAT",
|
||||
"REST_PAT",
|
||||
"PATH_PAT",
|
||||
"RECORD_PAT",
|
||||
"RECORD_PAT_FIELD_LIST",
|
||||
|
|
|
@ -498,7 +498,7 @@ TypeBound =
|
|||
Pat =
|
||||
IdentPat
|
||||
| BoxPat
|
||||
| DotDotPat
|
||||
| RestPat
|
||||
| LiteralPat
|
||||
| MacroPat
|
||||
| OrPat
|
||||
|
@ -560,7 +560,7 @@ OrPat =
|
|||
BoxPat =
|
||||
'box' Pat
|
||||
|
||||
DotDotPat =
|
||||
RestPat =
|
||||
'..'
|
||||
|
||||
MacroPat =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue