Skip to main content

rusty_javac/
lib.rs

1pub mod ast;
2pub mod bytecode;
3pub mod call_resolver;
4pub mod classfile;
5pub mod compiler;
6pub mod diagnostics;
7pub mod hir;
8pub mod lexer;
9pub mod parser;
10pub mod ty;
11
12pub use compiler::config::CompilerConfig;
13pub use compiler::pipeline::compile;