From abda8d00117072f7c03f57eaeca9cf44427078dc Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Mon, 11 May 2026 08:34:22 +0300 Subject: Replace generic list AST with typed expression tree Each form (fn, let, for, set, do, call) now has its own variant with named fields instead of being a plain list. --- compiler/src/ast/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/src/ast/mod.rs') diff --git a/compiler/src/ast/mod.rs b/compiler/src/ast/mod.rs index 2a0be03..afd459e 100644 --- a/compiler/src/ast/mod.rs +++ b/compiler/src/ast/mod.rs @@ -3,7 +3,7 @@ mod models; mod parser; pub use error::Error; -pub use models::{Ast, Atom, Expr}; +pub use models::{Ast, Atom, Expr, LetVar}; pub use parser::Parser; #[cfg(test)] -- cgit v1.3