move to else f

This commit is contained in:
Jake Heinz 2021-07-31 04:50:19 +00:00
parent 2baef17bb1
commit 0f434b8620

View File

@ -489,13 +489,12 @@ fn highlight_def(db: &RootDatabase, krate: Option<hir::Crate>, def: Definition)
let ty = local.ty(db);
if local.is_mut(db) || ty.is_mutable_reference() {
h |= HlMod::Mutable;
} else if local.is_ref(db) || ty.is_reference() {
h |= HlMod::Reference;
}
if ty.as_callable(db).is_some() || ty.impls_fnonce(db) {
h |= HlMod::Callable;
}
if local.is_ref(db) || ty.is_reference() {
h |= HlMod::Reference;
}
h
}
Definition::Label(_) => Highlight::new(HlTag::Symbol(SymbolKind::Label)),