kaish_kernel/ast/mod.rs
1//! Abstract Syntax Tree types for kaish.
2//!
3//! This module provides:
4//! - AST type definitions (`types` module, re-exported at this level)
5//! - S-expression formatter for test snapshots (`sexpr` module)
6//! - The statement plan: an unexpanded rendering plus the commands a
7//! statement would run (`plan` module)
8
9mod types;
10pub mod plan;
11pub mod sexpr;
12
13pub use types::*;