feat(env): move env out of vm,

This commit is contained in:
2025-05-23 19:19:20 +08:00
parent 5291e49313
commit b41fd38bcc
10 changed files with 62 additions and 41 deletions

View File

@@ -5,8 +5,9 @@ use hashbrown::{HashMap, HashSet};
use derive_more::Constructor;
use itertools::Itertools;
use crate::env::VmEnv;
use crate::error::Result;
use crate::vm::{VM, VmEnv};
use crate::vm::VM;
use super::super::public as p;
use super::Value;