Implement AOT backend infrastructure with CLI integration

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-14 04:38:20 +00:00
parent 8443635380
commit db9bcd3b45
7 changed files with 1026 additions and 3 deletions

View File

@ -4,6 +4,8 @@
pub mod vm;
pub mod wasm;
pub mod aot;
pub use vm::{VM, VMError, VMValue};
pub use wasm::{WasmBackend, WasmError};
pub use wasm::{WasmBackend, WasmError};
pub use aot::{AotBackend, AotError, AotConfig, AotStats};