pub trait FoldWithPath<V: ?Sized + FoldAstPath> {
    fn fold_with_path(self, v: &mut V, ast_path: &mut AstKindPath) -> Self;
    fn fold_children_with_path(
        self,
        v: &mut V,
        ast_path: &mut AstKindPath
    ) -> Self; }
Available on crate feature path 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.fold_xxx) with self and the ast path.

Visit children nodes with v and ast path appended [AstKind] of self. The ast path will be resotred when this method returns.

This is the default implementaton of a handler method in FoldAstPath.

Implementations on Foreign Types

Visit children nodes of self with v

Implementors