Trait swc_estree_visit::VisitAllWith[][src]

pub trait VisitAllWith<V: VisitAll> {
    fn visit_all_with(&self, _parent: &dyn Node, v: &mut V);
fn visit_all_children_with(&self, v: &mut V); }

Required methods

Visit children nodes of self with v

Implementations on Foreign Types

Visit children nodes of self with v

Implementors