pub trait VisitAllWith<V> where
    V: VisitAll + ?Sized
{ fn visit_all_with(&self, v: &mut V); fn visit_all_children_with(&self, v: &mut V); }
Available on crate feature visit only.
Expand description

A utility trait implemented for ast nodes, and allow to visit them with a visitor.

Required Methods

Calls a visitor method (v.visit_xxx) with self.

Visit children nodes of self with v

Implementations on Foreign Types

Visit children nodes of self with v

Implementors