Conlang/compiler/cl-ast/src/ast_visitor.rs

9 lines
206 B
Rust
Raw Normal View History

//! Contains an [immutable visitor](Visit) and an [owned folder](Fold) trait,
//! with default implementations across the entire AST
pub mod fold;
pub mod visit;
pub use fold::Fold;
pub use visit::Visit;