Add unimplemented yield* instruction

This commit is contained in:
Andrew Morris
2023-06-01 09:05:55 +10:00
parent ea4571fe82
commit 76f78eb8ec
8 changed files with 25 additions and 3 deletions

View File

@@ -555,6 +555,10 @@ impl StackFrameTrait for BytecodeStackFrame {
Yield => {
panic!("TODO: yield");
}
YieldStar => {
panic!("TODO: yield*");
}
};
Ok(FrameStepOk::Continue)