pub fn fold_opt_stmt<V>(
    _visitor: &mut V,
    n: Option<Box<Stmt, Global>>
) -> Option<Box<Stmt, Global>> where
    V: Fold + ?Sized
Available on crate feature visit only.
Expand description

Visits children of the nodes with the given visitor.

This is the default implementation of a method of Fold.