zen_expression/compiler/mod.rs
1//! Compilation from AST into Opcodes
2//!
3//! The Compiler module transforms an Abstract Syntax Tree (AST) representation of source code into machine-readable opcodes.
4mod compiler;
5mod error;
6mod opcode;
7
8pub use compiler::Compiler;
9pub use error::CompilerError;
10pub use opcode::{Compare, FetchFastTarget, Jump, Opcode};