mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-14 06:15:27 +00:00
Reame PlaceholderType -> InferType
This commit is contained in:
parent
08ea2271e8
commit
a6e45c6c69
10 changed files with 28 additions and 28 deletions
|
@ -172,7 +172,7 @@ fn placeholder_type(p: &mut Parser) {
|
|||
assert!(p.at(T![_]));
|
||||
let m = p.start();
|
||||
p.bump(T![_]);
|
||||
m.complete(p, PLACEHOLDER_TYPE);
|
||||
m.complete(p, INFER_TYPE);
|
||||
}
|
||||
|
||||
// test fn_pointer_type
|
||||
|
|
|
@ -147,7 +147,7 @@ pub enum SyntaxKind {
|
|||
ARRAY_TYPE,
|
||||
SLICE_TYPE,
|
||||
REFERENCE_TYPE,
|
||||
PLACEHOLDER_TYPE,
|
||||
INFER_TYPE,
|
||||
FN_POINTER_TYPE,
|
||||
FOR_TYPE,
|
||||
IMPL_TRAIT_TYPE,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue