Step -> ControlFlow (use ?)

This commit is contained in:
2026-04-21 09:31:41 +08:00
parent 11b0b8a78e
commit b31c2a4906
11 changed files with 86 additions and 128 deletions
+3 -3
View File
@@ -19,7 +19,7 @@ impl<'gc> crate::Vm<'gc> {
}),
);
self.push(Value::new_gc(thunk));
Step::Continue
Step::Continue(())
}
#[inline(always)]
@@ -40,7 +40,7 @@ impl<'gc> crate::Vm<'gc> {
},
);
self.push(Value::new_gc(closure));
Step::Continue
Step::Continue(())
}
#[inline(always)]
@@ -90,6 +90,6 @@ impl<'gc> crate::Vm<'gc> {
},
);
self.push(Value::new_gc(closure));
Step::Continue
Step::Continue(())
}
}