Add field is_import to def::Export.

This commit is contained in:
Jeffrey Seyfried 2017-12-04 21:17:42 -08:00
parent 58e80400b2
commit 1b9d0584a0
8 changed files with 22 additions and 9 deletions

View file

@ -391,7 +391,7 @@ fn build_module(cx: &DocContext, did: DefId) -> clean::Module {
let mut visited = FxHashSet();
for &item in cx.tcx.item_children(did).iter() {
let def_id = item.def.def_id();
if cx.tcx.visibility(def_id) == ty::Visibility::Public {
if item.vis == ty::Visibility::Public {
if !visited.insert(def_id) { continue }
if let Some(i) = try_inline(cx, item.def, item.ident.name) {
items.extend(i)

View file

@ -68,7 +68,9 @@ impl<'a, 'b, 'tcx> LibEmbargoVisitor<'a, 'b, 'tcx> {
}
for item in self.cx.tcx.item_children(def_id).iter() {
self.visit_item(item.def);
if !item.is_import || item.vis == Visibility::Public {
self.visit_item(item.def);
}
}
}