mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 21:35:20 +00:00
Rename PalceholderPat -> WildcardPat
This commit is contained in:
parent
d7f75db90d
commit
6791eb9685
50 changed files with 132 additions and 135 deletions
|
@ -234,7 +234,7 @@ fn placeholder_pat(p: &mut Parser) -> CompletedMarker {
|
|||
assert!(p.at(T![_]));
|
||||
let m = p.start();
|
||||
p.bump(T![_]);
|
||||
m.complete(p, PLACEHOLDER_PAT)
|
||||
m.complete(p, WILDCARD_PAT)
|
||||
}
|
||||
|
||||
// test dot_dot_pat
|
||||
|
|
|
@ -157,7 +157,7 @@ pub enum SyntaxKind {
|
|||
REF_PAT,
|
||||
BOX_PAT,
|
||||
BIND_PAT,
|
||||
PLACEHOLDER_PAT,
|
||||
WILDCARD_PAT,
|
||||
DOT_DOT_PAT,
|
||||
PATH_PAT,
|
||||
RECORD_PAT,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue