Skip to main content

snc_core/
lib.rs

1pub mod analysis;
2pub mod ast;
3pub mod codegen;
4pub mod error;
5pub mod ir;
6pub mod lexer;
7pub mod parser;
8pub mod preprocess;
9
10#[cfg(test)]
11mod codegen_test;