Update crates/ide/src/syntax_highlighting/highlight.rs
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
parent
0eb1afdcb7
commit
28b6a30752
@ -489,7 +489,8 @@ 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() {
|
||||
}
|
||||
if local.is_ref(db) || ty.is_reference() {
|
||||
h |= HlMod::Reference;
|
||||
}
|
||||
if ty.as_callable(db).is_some() || ty.impls_fnonce(db) {
|
||||
|
Loading…
Reference in New Issue
Block a user