Partially implement yield*

This commit is contained in:
Andrew Morris
2023-06-01 17:28:31 +10:00
parent 6b2404119e
commit 97ac17e917
4 changed files with 7 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ pub enum FrameStepOk {
Pop(CallResult),
Push(StackFrame),
Yield(Val),
YieldStar(Val),
}
pub type FrameStepResult = Result<FrameStepOk, Val>;