1 2 3 4 5 6 7 8 9 10 11
#![allow(dead_code)] mod artifact; pub(crate) mod cfg; pub(crate) mod compile; pub(crate) mod ir; mod runtime; pub(crate) mod ssa; pub use artifact::AotArtifactError; pub(crate) use compile::CompiledProgram;