move index_resolve to symbol index

This commit is contained in:
Aleksey Kladov 2019-02-08 14:09:57 +03:00
parent 5173c6295b
commit e4a6343e47
4 changed files with 11 additions and 14 deletions

View file

@ -20,7 +20,7 @@ pub(crate) fn call_info(db: &RootDatabase, position: FilePosition) -> Option<Cal
let name_ref = calling_node.name_ref()?;
// Resolve the function's NameRef (NOTE: this isn't entirely accurate).
let file_symbols = db.index_resolve(name_ref);
let file_symbols = crate::symbol_index::index_resolve(db, name_ref);
let symbol = file_symbols
.into_iter()
.find(|it| it.ptr.kind() == FN_DEF)?;