cl-ast: Finally figure out how visit and walk are supposed to work

This commit is contained in:
2025-05-05 00:24:52 -04:00
parent 4747b65414
commit 7c2dd1468b
5 changed files with 1201 additions and 549 deletions

View File

@@ -2,7 +2,11 @@
//! 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;