remove cancelable from symbols

This commit is contained in:
Aleksey Kladov 2019-01-15 18:19:09 +03:00
parent 11f3c8afb2
commit fb012e5c1e
5 changed files with 12 additions and 14 deletions

View file

@ -95,7 +95,7 @@ pub(crate) fn reference_definition(
}
// If that fails try the index based approach.
let navs = db
.index_resolve(name_ref)?
.index_resolve(name_ref)
.into_iter()
.map(NavigationTarget::from_symbol)
.collect();