Don't strip items with inherited visibility in AliasedNonLocalStripper
This commit is contained in:
parent
dbfed2c43e
commit
090dbb12f9
1 changed files with 7 additions and 2 deletions
|
@ -46,8 +46,13 @@ impl<'tcx> DocFolder for NonLocalStripper<'tcx> {
|
||||||
// the field and not the one given by the user for the currrent crate.
|
// the field and not the one given by the user for the currrent crate.
|
||||||
//
|
//
|
||||||
// FIXME(#125009): Not-local should probably consider same Cargo workspace
|
// FIXME(#125009): Not-local should probably consider same Cargo workspace
|
||||||
if !i.def_id().map_or(true, |did| did.is_local()) {
|
if let Some(def_id) = i.def_id()
|
||||||
if i.visibility(self.tcx) != Some(Visibility::Public) || i.is_doc_hidden() {
|
&& !def_id.is_local()
|
||||||
|
{
|
||||||
|
if i.is_doc_hidden()
|
||||||
|
// Default to *not* stripping items with inherited visibility.
|
||||||
|
|| i.visibility(self.tcx).map_or(false, |viz| viz != Visibility::Public)
|
||||||
|
{
|
||||||
return Some(strip_item(i));
|
return Some(strip_item(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue