mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 04:44:57 +00:00
fix: Fix reference completions being emitted in places other than argument lists
This commit is contained in:
parent
ad91622d11
commit
82ed68c95e
2 changed files with 16 additions and 5 deletions
|
@ -353,7 +353,7 @@ fn expected_type_and_name(
|
|||
_ => ty,
|
||||
};
|
||||
|
||||
loop {
|
||||
let (ty, name) = loop {
|
||||
break match_ast! {
|
||||
match node {
|
||||
ast::LetStmt(it) => {
|
||||
|
@ -385,9 +385,7 @@ fn expected_type_and_name(
|
|||
token.clone(),
|
||||
).map(|ap| {
|
||||
let name = ap.ident().map(NameOrNameRef::Name);
|
||||
|
||||
let ty = strip_refs(ap.ty);
|
||||
(Some(ty), name)
|
||||
(Some(ap.ty), name)
|
||||
})
|
||||
.unwrap_or((None, None))
|
||||
},
|
||||
|
@ -489,7 +487,8 @@ fn expected_type_and_name(
|
|||
},
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
(ty.map(strip_refs), name)
|
||||
}
|
||||
|
||||
fn classify_lifetime(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue