Trait moore_svlog::ast::AnyNode [−][src]
pub trait AnyNode<'a>: BasicNode<'a> + AnyNodeData + Display + Send + Sync {
fn id(&self) -> NodeId;
fn span(&self) -> Span;
fn order(&self) -> usize;
fn human_span(&self) -> Span { ... }
fn get_parent(&self) -> Option<&'a (dyn AnyNode<'a> + 'a)> { ... }
fn link(
&'a self,
parent: Option<&'a (dyn AnyNode<'a> + 'a)>,
order: &mut usize
) { ... }
fn link_attach(&'a self, parent: &'a (dyn AnyNode<'a> + 'a), order: usize) { ... }
fn as_ptr(&self) -> *const u8 { ... }
}
Expand description
An AST node.
Required methods
Provided methods
fn human_span(&self) -> Span
fn human_span(&self) -> Span
Get a span that is terse and suitable to pinpoint the node for a human.
fn get_parent(&self) -> Option<&'a (dyn AnyNode<'a> + 'a)>
fn get_parent(&self) -> Option<&'a (dyn AnyNode<'a> + 'a)>
Get this node’s parent.
Link up this node.
fn link_attach(&'a self, parent: &'a (dyn AnyNode<'a> + 'a), order: usize)
fn link_attach(&'a self, parent: &'a (dyn AnyNode<'a> + 'a), order: usize)
Link up this node as an expansion of another node.
All subnodes inherit the order from their parent. Useful if a node is generated as part of a later expansion/analysis pass, but needs to hook into the AST somewhere.