[−][src]Trait antlr_rust::tree::VisitChildren
How visitor is supposed to visit children
Default implementation visits children recursively To override it you would need to enable specialization feature
It is already implemented for visitors that are bound by 'input
.
Required methods
fn visit_children_inner(&mut self, node: &Node::Type)
Implementors
impl<'input, Node, T> VisitChildren<'input, Node> for T where
Node: ParserNodeType<'input>,
T: ParseTreeVisitor<'input, Node>,
&'a mut Self: CoerceUnsized<&'a mut Node::Visitor>,
Node::Type: Visitable<Node::Visitor>,
[src]
Node: ParserNodeType<'input>,
T: ParseTreeVisitor<'input, Node>,
&'a mut Self: CoerceUnsized<&'a mut Node::Visitor>,
Node::Type: Visitable<Node::Visitor>,