Struct rustc_ast_lowering::index::NodeCollector [−][src]
pub(crate) struct NodeCollector<'a, 'hir> {
source_map: &'a SourceMap,
bodies: &'a IndexVec<ItemLocalId, Option<&'hir Body<'hir>>>,
nodes: IndexVec<ItemLocalId, Option<ParentedNode<'hir>>>,
parenting: FxHashMap<LocalDefId, ItemLocalId>,
parent_node: ItemLocalId,
owner: LocalDefId,
definitions: &'a Definitions,
}
Expand description
A visitor that walks over the HIR and collects Node
s into a HIR map.
Fields
source_map: &'a SourceMap
Source map
bodies: &'a IndexVec<ItemLocalId, Option<&'hir Body<'hir>>>
nodes: IndexVec<ItemLocalId, Option<ParentedNode<'hir>>>
Outputs
parenting: FxHashMap<LocalDefId, ItemLocalId>
parent_node: ItemLocalId
The parent of this node
owner: LocalDefId
definitions: &'a Definitions
Implementations
Trait Implementations
Because we want to track parent items and so forth, enable deep walking so that we walk nested items in the context of their outer items.
Invoked when a nested item is encountered. By default does
nothing unless you override nested_visit_map
to return other than
None
, in which case it will walk the item. You probably
don’t want to override this method – instead, override
nested_visit_map
or use the “shallow” or “deep” visit
patterns described on itemlikevisit::ItemLikeVisitor
. The only
reason to override this method is if you want a nested pattern
but cannot supply a Map
; see nested_visit_map
for advice. Read more
Like visit_nested_item()
, but for trait items. See
visit_nested_item()
for advice on when to override this
method. Read more
Like visit_nested_item()
, but for impl items. See
visit_nested_item()
for advice on when to override this
method. Read more
Like visit_nested_item()
, but for foreign items. See
visit_nested_item()
for advice on when to override this
method. Read more
Invoked to visit the body of a function, method or closure. Like
visit_nested_item, does nothing by default unless you override
nested_visit_map
to return other than None
, in which case it will walk
the body. Read more
Visits the top-level item and (optionally) nested items / impl items. See
visit_nested_item
for details. Read more
When invoking visit_all_item_likes()
, you need to supply an
item-like visitor. This method converts an “intra-visit”
visitor into an item-like visitor that walks the entire tree.
If you use this, you probably don’t want to process the
contents of nested item-like things, since the outer loop will
visit them as well. Read more
fn visit_variant_data(
&mut self,
s: &'v VariantData<'v>,
Symbol,
&'v Generics<'v>,
_parent_id: HirId,
Span
)
fn visit_enum_def(
&mut self,
enum_definition: &'v EnumDef<'v>,
generics: &'v Generics<'v>,
item_id: HirId,
Span
)
Auto Trait Implementations
impl<'a, 'hir> !RefUnwindSafe for NodeCollector<'a, 'hir>
impl<'a, 'hir> !Send for NodeCollector<'a, 'hir>
impl<'a, 'hir> !Sync for NodeCollector<'a, 'hir>
impl<'a, 'hir> Unpin for NodeCollector<'a, 'hir> where
'hir: 'a,
impl<'a, 'hir> !UnwindSafe for NodeCollector<'a, 'hir>
Blanket Implementations
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 88 bytes