Don't underline function definition if self is &mut

The self is right there, and is already underlined, so it makes little
sense to emit even more underlines.
This commit is contained in:
Aleksey Kladov 2020-08-19 20:02:33 +02:00
parent eb7bb2cba0
commit 8000d1d30d
2 changed files with 2 additions and 8 deletions

View file

@ -747,12 +747,6 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight {
if func.is_unsafe(db) {
h |= HighlightModifier::Unsafe;
}
if let Some(self_param) = func.self_param(db) {
match self_param.access(db) {
hir::Access::Exclusive => h |= HighlightModifier::Mutable,
hir::Access::Shared | hir::Access::Owned => (),
}
}
return h;
}
hir::ModuleDef::Adt(hir::Adt::Struct(_)) => HighlightTag::Struct,