fix: fixpoint

This commit is contained in:
2025-07-17 22:50:01 +08:00
parent b556f1ea2d
commit e06bcf3f9d
8 changed files with 111 additions and 107 deletions

View File

@@ -305,6 +305,12 @@ impl Evaluate for ir::LetVar {
}
}
impl Evaluate for ir::Cache {
fn eval(&self, engine: &mut Engine, env: &mut Env) -> Result<Value> {
todo!()
}
}
impl Evaluate for ir::Thunk {
fn eval(&self, engine: &mut Engine, env: &mut Env) -> Result<Value> {
Value::Thunk(self.idx).ok()