mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
move index_resolve to symbol index
This commit is contained in:
parent
5173c6295b
commit
e4a6343e47
4 changed files with 11 additions and 14 deletions
|
@ -118,8 +118,7 @@ pub(crate) fn reference_definition(
|
|||
}
|
||||
}
|
||||
// If that fails try the index based approach.
|
||||
let navs = db
|
||||
.index_resolve(name_ref)
|
||||
let navs = crate::symbol_index::index_resolve(db, name_ref)
|
||||
.into_iter()
|
||||
.map(NavigationTarget::from_symbol)
|
||||
.collect();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue