Merge branch 'master' into sync-from-rust
This commit is contained in:
commit
354b1aaa50
@ -167,7 +167,11 @@ fn collect_import_map(db: &dyn DefDatabase, krate: CrateId) -> ImportMap {
|
||||
|
||||
let visible_items = mod_data.scope.entries().filter_map(|(name, per_ns)| {
|
||||
let per_ns = per_ns.filter_visibility(|vis| vis == Visibility::Public);
|
||||
if per_ns.is_none() { None } else { Some((name, per_ns)) }
|
||||
if per_ns.is_none() {
|
||||
None
|
||||
} else {
|
||||
Some((name, per_ns))
|
||||
}
|
||||
});
|
||||
|
||||
for (name, per_ns) in visible_items {
|
||||
|
@ -360,7 +360,11 @@ pub fn module_id(&self, local_id: LocalModuleId) -> ModuleId {
|
||||
|
||||
pub(crate) fn crate_root(&self, db: &dyn DefDatabase) -> ModuleId {
|
||||
self.with_ancestor_maps(db, self.root, &mut |def_map, _module| {
|
||||
if def_map.block.is_none() { Some(def_map.module_id(def_map.root)) } else { None }
|
||||
if def_map.block.is_none() {
|
||||
Some(def_map.module_id(def_map.root))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
})
|
||||
.expect("DefMap chain without root")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user