Skip to content

Commit

Permalink
export ast visitor stubs (#5141)
Browse files Browse the repository at this point in the history
  • Loading branch information
paultag authored Jan 24, 2025
1 parent ab375f4 commit e7203b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/wasm-lib/kcl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub mod std;
pub mod test_server;
mod thread;
mod unparser;
mod walk;
pub mod walk;
#[cfg(target_arch = "wasm32")]
mod wasm;

Expand Down
1 change: 1 addition & 0 deletions src/wasm-lib/kcl/src/walk/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ mod ast_visitor;
mod ast_walk;

pub use ast_node::Node;
pub use ast_visitor::{Visitable, Visitor};
pub use ast_walk::walk;

0 comments on commit e7203b9

Please sign in to comment.