mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
internal: remove one more accidentally quadratic code-path
Definition::visibility was implemented in a rather roundabout way -- by asking the parent module about the effective visibility. This is problematic for a couple of reasons: * first, it doesn't work for local items * second, asking module about visibility of a child is a linear operation (that's a problem in itself, tracked in #9378) Instead, lets ask the declared visibility directly, we have all the code for it, and need only to actually us it.
This commit is contained in:
parent
9239943b84
commit
7be2d2f008
2 changed files with 32 additions and 26 deletions
|
@ -43,13 +43,29 @@ impl Definition {
|
|||
|
||||
pub fn visibility(&self, db: &RootDatabase) -> Option<Visibility> {
|
||||
match self {
|
||||
Definition::Macro(_) => None,
|
||||
Definition::Field(sf) => Some(sf.visibility(db)),
|
||||
Definition::ModuleDef(def) => def.definition_visibility(db),
|
||||
Definition::SelfType(_) => None,
|
||||
Definition::Local(_) => None,
|
||||
Definition::GenericParam(_) => None,
|
||||
Definition::Label(_) => None,
|
||||
Definition::ModuleDef(def) => match def {
|
||||
ModuleDef::Module(it) => {
|
||||
// FIXME: should work like other cases here.
|
||||
let parent = it.parent(db)?;
|
||||
parent.visibility_of(db, def)
|
||||
}
|
||||
ModuleDef::Function(it) => Some(it.visibility(db)),
|
||||
ModuleDef::Adt(it) => Some(it.visibility(db)),
|
||||
ModuleDef::Const(it) => Some(it.visibility(db)),
|
||||
ModuleDef::Static(it) => Some(it.visibility(db)),
|
||||
ModuleDef::Trait(it) => Some(it.visibility(db)),
|
||||
ModuleDef::TypeAlias(it) => Some(it.visibility(db)),
|
||||
// NB: Variants don't have their own visibility, and just inherit
|
||||
// one from the parent. Not sure if that's the right thing to do.
|
||||
ModuleDef::Variant(it) => Some(it.parent_enum(db).visibility(db)),
|
||||
ModuleDef::BuiltinType(_) => None,
|
||||
},
|
||||
Definition::Macro(_)
|
||||
| Definition::SelfType(_)
|
||||
| Definition::Local(_)
|
||||
| Definition::GenericParam(_)
|
||||
| Definition::Label(_) => None,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue