match style
This commit is contained in:
parent
44726b6ca3
commit
19b1d505db
@ -376,7 +376,10 @@ fn highlight_def(db: &RootDatabase, krate: Option<hir::Crate>, def: Definition)
|
|||||||
h |= HlMod::Associated;
|
h |= HlMod::Associated;
|
||||||
match func.self_param(db) {
|
match func.self_param(db) {
|
||||||
Some(sp) => match sp.access(db) {
|
Some(sp) => match sp.access(db) {
|
||||||
hir::Access::Exclusive => h = h | HlMod::Mutable | HlMod::Reference,
|
hir::Access::Exclusive => {
|
||||||
|
h |= HlMod::Mutable;
|
||||||
|
h |= HlMod::Reference;
|
||||||
|
}
|
||||||
hir::Access::Shared => h |= HlMod::Reference,
|
hir::Access::Shared => h |= HlMod::Reference,
|
||||||
_ => {}
|
_ => {}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user