@@ -10,7 +10,6 @@ use rustc_hir::CRATE_HIR_ID;
10
10
use rustc_middle:: middle:: privacy:: AccessLevel ;
11
11
use rustc_middle:: ty:: TyCtxt ;
12
12
use rustc_span:: def_id:: { CRATE_DEF_ID , LOCAL_CRATE } ;
13
- use rustc_span:: source_map:: Spanned ;
14
13
use rustc_span:: symbol:: { kw, sym, Symbol } ;
15
14
16
15
use std:: mem;
@@ -72,9 +71,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
72
71
}
73
72
74
73
crate fn visit ( mut self ) -> Module < ' tcx > {
75
- let span = self . cx . tcx . def_span ( CRATE_DEF_ID ) ;
76
74
let mut top_level_module = self . visit_mod_contents (
77
- & Spanned { span, node : hir:: VisibilityKind :: Public } ,
78
75
hir:: CRATE_HIR_ID ,
79
76
self . cx . tcx . hir ( ) . root_module ( ) ,
80
77
self . cx . tcx . crate_name ( LOCAL_CRATE ) ,
@@ -134,15 +131,15 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
134
131
135
132
fn visit_mod_contents (
136
133
& mut self ,
137
- vis : & hir:: Visibility < ' _ > ,
138
134
id : hir:: HirId ,
139
135
m : & ' tcx hir:: Mod < ' tcx > ,
140
136
name : Symbol ,
141
137
) -> Module < ' tcx > {
142
138
let mut om = Module :: new ( name, id, m. inner ) ;
139
+ let def_id = self . cx . tcx . hir ( ) . local_def_id ( id) . to_def_id ( ) ;
143
140
// Keep track of if there were any private modules in the path.
144
141
let orig_inside_public_path = self . inside_public_path ;
145
- self . inside_public_path &= vis . node . is_pub ( ) ;
142
+ self . inside_public_path &= self . cx . tcx . visibility ( def_id ) . is_public ( ) ;
146
143
for & i in m. item_ids {
147
144
let item = self . cx . tcx . hir ( ) . item ( i) ;
148
145
self . visit_item ( item, None , & mut om) ;
@@ -259,7 +256,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
259
256
let name = renamed. unwrap_or ( item. ident . name ) ;
260
257
261
258
let def_id = item. def_id . to_def_id ( ) ;
262
- let is_pub = item . vis . node . is_pub ( ) || self . cx . tcx . has_attr ( def_id, sym :: macro_export ) ;
259
+ let is_pub = self . cx . tcx . visibility ( def_id) . is_public ( ) ;
263
260
264
261
if is_pub {
265
262
self . store_path ( item. def_id . to_def_id ( ) ) ;
@@ -332,7 +329,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
332
329
}
333
330
}
334
331
hir:: ItemKind :: Mod ( ref m) => {
335
- om. mods . push ( self . visit_mod_contents ( & item . vis , item. hir_id ( ) , m, name) ) ;
332
+ om. mods . push ( self . visit_mod_contents ( item. hir_id ( ) , m, name) ) ;
336
333
}
337
334
hir:: ItemKind :: Fn ( ..)
338
335
| hir:: ItemKind :: ExternCrate ( ..)
@@ -368,7 +365,7 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
368
365
om : & mut Module < ' tcx > ,
369
366
) {
370
367
// If inlining we only want to include public functions.
371
- if !self . inlining || item . vis . node . is_pub ( ) {
368
+ if !self . inlining || self . cx . tcx . visibility ( item . def_id ) . is_public ( ) {
372
369
om. foreigns . push ( ( item, renamed) ) ;
373
370
}
374
371
}
0 commit comments