@@ -23,10 +23,6 @@ pub struct NodeCollector<'ast> {
23
23
pub ( super ) map : Vec < MapEntry < ' ast > > ,
24
24
/// The parent of this node
25
25
pub parent_node : NodeId ,
26
- /// If true, completely ignore nested items. We set this when loading
27
- /// HIR from metadata, since in that case we only want the HIR for
28
- /// one specific item (and not the ones nested inside of it).
29
- pub ignore_nested_items : bool
30
26
}
31
27
32
28
impl < ' ast > NodeCollector < ' ast > {
@@ -35,30 +31,12 @@ impl<'ast> NodeCollector<'ast> {
35
31
krate : krate,
36
32
map : vec ! [ ] ,
37
33
parent_node : CRATE_NODE_ID ,
38
- ignore_nested_items : false
39
34
} ;
40
35
collector. insert_entry ( CRATE_NODE_ID , RootCrate ) ;
41
36
42
37
collector
43
38
}
44
39
45
- pub ( super ) fn extend ( krate : & ' ast Crate ,
46
- parent : & ' ast InlinedItem ,
47
- parent_node : NodeId ,
48
- map : Vec < MapEntry < ' ast > > )
49
- -> NodeCollector < ' ast > {
50
- let mut collector = NodeCollector {
51
- krate : krate,
52
- map : map,
53
- parent_node : parent_node,
54
- ignore_nested_items : true
55
- } ;
56
-
57
- collector. insert_entry ( parent_node, RootInlinedParent ( parent) ) ;
58
-
59
- collector
60
- }
61
-
62
40
fn insert_entry ( & mut self , id : NodeId , entry : MapEntry < ' ast > ) {
63
41
debug ! ( "ast_map: {:?} => {:?}" , id, entry) ;
64
42
let len = self . map . len ( ) ;
@@ -92,27 +70,19 @@ impl<'ast> Visitor<'ast> for NodeCollector<'ast> {
92
70
93
71
fn visit_nested_item ( & mut self , item : ItemId ) {
94
72
debug ! ( "visit_nested_item: {:?}" , item) ;
95
- if !self . ignore_nested_items {
96
- self . visit_item ( self . krate . item ( item. id ) )
97
- }
73
+ self . visit_item ( self . krate . item ( item. id ) ) ;
98
74
}
99
75
100
76
fn visit_nested_trait_item ( & mut self , item_id : TraitItemId ) {
101
- if !self . ignore_nested_items {
102
- self . visit_trait_item ( self . krate . trait_item ( item_id) )
103
- }
77
+ self . visit_trait_item ( self . krate . trait_item ( item_id) ) ;
104
78
}
105
79
106
80
fn visit_nested_impl_item ( & mut self , item_id : ImplItemId ) {
107
- if !self . ignore_nested_items {
108
- self . visit_impl_item ( self . krate . impl_item ( item_id) )
109
- }
81
+ self . visit_impl_item ( self . krate . impl_item ( item_id) ) ;
110
82
}
111
83
112
84
fn visit_nested_body ( & mut self , id : BodyId ) {
113
- if !self . ignore_nested_items {
114
- self . visit_body ( self . krate . body ( id) )
115
- }
85
+ self . visit_body ( self . krate . body ( id) ) ;
116
86
}
117
87
118
88
fn visit_item ( & mut self , i : & ' ast Item ) {
0 commit comments