Phase 8.1 Complete: WASM backend foundation implementation

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-13 13:05:49 +00:00
parent a25777a31c
commit 8276eeeb64
6 changed files with 992 additions and 1 deletions

View File

@ -3,5 +3,7 @@
*/
pub mod vm;
pub mod wasm;
pub use vm::{VM, VMError, VMValue};
pub use vm::{VM, VMError, VMValue};
pub use wasm::{WasmBackend, WasmError};