13 lines
242 B
Rust
13 lines
242 B
Rust
//! 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 mod walk;
|
|
|
|
pub use fold::Fold;
|
|
|
|
pub use visit::Visit;
|
|
pub use walk::Walk;
|