pub trait Visitor {
// Required method
fn visit(&mut self, arena: &ExprArena, id: ExprId, node: &ExprNode);
}Expand description
Pre-order visitor over an arena. Backends implement this to translate the expression tree into solver-specific representations without copying.