rustc_metadata: Rename item_children(_untracked)
to module_children(_untracked)
And `each_child_of_item` to `for_each_module_child`
This commit is contained in:
parent
96c6a50e96
commit
3051f6e9c4
14 changed files with 27 additions and 22 deletions
|
@ -214,7 +214,7 @@ impl<'a> Resolver<'a> {
|
|||
}
|
||||
|
||||
crate fn build_reduced_graph_external(&mut self, module: Module<'a>) {
|
||||
for child in self.cstore().item_children_untracked(module.def_id(), self.session) {
|
||||
for child in self.cstore().module_children_untracked(module.def_id(), self.session) {
|
||||
let parent_scope = ParentScope::module(module, self);
|
||||
BuildReducedGraphVisitor { r: self, parent_scope }
|
||||
.build_reduced_graph_for_external_crate_res(child);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue