//! Defines a trait for visiting a bulloak tree AST in depth-first order.
use crateast;
/// A trait for visiting a tree AST in depth-first order.
///
/// All implementors of `Visitor` must provide a `visit_root` implementation.
/// This is usually the entry point of the visitor, though it is best if this
/// assumption is not held.