@@ -231,7 +231,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
231
231
// (i.e. variants, fields, and trait items) inherits from the visibility
232
232
// of the enum or trait.
233
233
ModuleKind :: Def ( DefKind :: Enum | DefKind :: Trait , def_id, _) => {
234
- self . r . visibilities [ & def_id. expect_local ( ) ]
234
+ self . r . tcx . visibility ( def_id) . expect_local ( )
235
235
}
236
236
// Otherwise, the visibility is restricted to the nearest parent `mod` item.
237
237
_ => ty:: Visibility :: Restricted (
@@ -399,6 +399,10 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
399
399
parent_prefix, use_tree, nested
400
400
) ;
401
401
402
+ if nested {
403
+ self . r . feed_visibility ( self . r . local_def_id ( id) , vis) ;
404
+ }
405
+
402
406
let mut prefix_iter = parent_prefix
403
407
. iter ( )
404
408
. cloned ( )
@@ -437,8 +441,6 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
437
441
let mut source = module_path. pop ( ) . unwrap ( ) ;
438
442
let mut type_ns_only = false ;
439
443
440
- self . r . visibilities . insert ( self . r . local_def_id ( id) , vis) ;
441
-
442
444
if nested {
443
445
// Correctly handle `self`
444
446
if source. ident . name == kw:: SelfLower {
@@ -552,7 +554,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
552
554
max_vis : Cell :: new ( None ) ,
553
555
id,
554
556
} ;
555
- self . r . visibilities . insert ( self . r . local_def_id ( id ) , vis ) ;
557
+
556
558
self . add_import ( prefix, kind, use_tree. span , item, root_span, item. id , vis) ;
557
559
}
558
560
ast:: UseTreeKind :: Nested ( ref items) => {
@@ -629,7 +631,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
629
631
let local_def_id = self . r . local_def_id ( item. id ) ;
630
632
let def_id = local_def_id. to_def_id ( ) ;
631
633
632
- self . r . visibilities . insert ( local_def_id, vis) ;
634
+ self . r . feed_visibility ( local_def_id, vis) ;
633
635
634
636
match item. kind {
635
637
ItemKind :: Use ( ref use_tree) => {
@@ -753,7 +755,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
753
755
let ctor_res =
754
756
Res :: Def ( DefKind :: Ctor ( CtorOf :: Struct , ctor_kind) , ctor_def_id. to_def_id ( ) ) ;
755
757
self . r . define ( parent, ident, ValueNS , ( ctor_res, ctor_vis, sp, expansion) ) ;
756
- self . r . visibilities . insert ( ctor_def_id, ctor_vis) ;
758
+ self . r . feed_visibility ( ctor_def_id, ctor_vis) ;
757
759
// We need the field visibility spans also for the constructor for E0603.
758
760
self . insert_field_visibilities_local ( ctor_def_id. to_def_id ( ) , vdata) ;
759
761
@@ -899,7 +901,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
899
901
let vis = self . resolve_visibility ( & item. vis ) ;
900
902
let res = Res :: Def ( def_kind, def_id) ;
901
903
self . r . define ( parent, item. ident , ns, ( res, vis, item. span , expansion) ) ;
902
- self . r . visibilities . insert ( local_def_id, vis) ;
904
+ self . r . feed_visibility ( local_def_id, vis) ;
903
905
}
904
906
905
907
fn build_reduced_graph_for_block ( & mut self , block : & Block ) {
@@ -1233,7 +1235,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1233
1235
self . r . check_reserved_macro_name ( ident, res) ;
1234
1236
self . insert_unused_macro ( ident, def_id, item. id ) ;
1235
1237
}
1236
- self . r . visibilities . insert ( def_id, vis) ;
1238
+ self . r . feed_visibility ( def_id, vis) ;
1237
1239
let scope = self . r . arenas . alloc_macro_rules_scope ( MacroRulesScope :: Binding (
1238
1240
self . r . arenas . alloc_macro_rules_binding ( MacroRulesBinding {
1239
1241
parent_macro_rules_scope : parent_scope. macro_rules ,
@@ -1257,7 +1259,7 @@ impl<'a, 'b, 'tcx> BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1257
1259
self . insert_unused_macro ( ident, def_id, item. id ) ;
1258
1260
}
1259
1261
self . r . define ( module, ident, MacroNS , ( res, vis, span, expansion) ) ;
1260
- self . r . visibilities . insert ( def_id, vis) ;
1262
+ self . r . feed_visibility ( def_id, vis) ;
1261
1263
self . parent_scope . macro_rules
1262
1264
}
1263
1265
}
@@ -1359,7 +1361,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1359
1361
// Trait impl item visibility is inherited from its trait when not specified
1360
1362
// explicitly. In that case we cannot determine it here in early resolve,
1361
1363
// so we leave a hole in the visibility table to be filled later.
1362
- self . r . visibilities . insert ( local_def_id, vis) ;
1364
+ self . r . feed_visibility ( local_def_id, vis) ;
1363
1365
}
1364
1366
1365
1367
if ctxt == AssocCtxt :: Trait {
@@ -1438,7 +1440,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1438
1440
self . visit_invoc ( sf. id ) ;
1439
1441
} else {
1440
1442
let vis = self . resolve_visibility ( & sf. vis ) ;
1441
- self . r . visibilities . insert ( self . r . local_def_id ( sf. id ) , vis) ;
1443
+ self . r . feed_visibility ( self . r . local_def_id ( sf. id ) , vis) ;
1442
1444
visit:: walk_field_def ( self , sf) ;
1443
1445
}
1444
1446
}
@@ -1460,7 +1462,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1460
1462
let res = Res :: Def ( DefKind :: Variant , def_id. to_def_id ( ) ) ;
1461
1463
let vis = self . resolve_visibility ( & variant. vis ) ;
1462
1464
self . r . define ( parent, ident, TypeNS , ( res, vis, variant. span , expn_id) ) ;
1463
- self . r . visibilities . insert ( def_id, vis) ;
1465
+ self . r . feed_visibility ( def_id, vis) ;
1464
1466
1465
1467
// If the variant is marked as non_exhaustive then lower the visibility to within the crate.
1466
1468
let ctor_vis =
@@ -1476,7 +1478,7 @@ impl<'a, 'b, 'tcx> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
1476
1478
let ctor_res =
1477
1479
Res :: Def ( DefKind :: Ctor ( CtorOf :: Variant , ctor_kind) , ctor_def_id. to_def_id ( ) ) ;
1478
1480
self . r . define ( parent, ident, ValueNS , ( ctor_res, ctor_vis, variant. span , expn_id) ) ;
1479
- self . r . visibilities . insert ( ctor_def_id, ctor_vis) ;
1481
+ self . r . feed_visibility ( ctor_def_id, ctor_vis) ;
1480
1482
}
1481
1483
1482
1484
// Record field names for error reporting.
0 commit comments