Implement Phase 1: MIR + VM backend with golden tests

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-13 05:59:10 +00:00
parent 5170889285
commit 2f3b453fcb
13 changed files with 567 additions and 2 deletions

7
src/backend/mod.rs Normal file
View File

@ -0,0 +1,7 @@
/*!
* Backend module - Different execution backends for MIR
*/
pub mod vm;
pub use vm::{VM, VMError};