mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-28 21:05:02 +00:00
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:
parent
eb7bb2cba0
commit
8000d1d30d
2 changed files with 2 additions and 8 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue