1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

LibJS/Bytecode: Implement yield*

This commit is contained in:
Luke Wilde 2022-12-09 18:48:57 +00:00 committed by Linus Groh
parent 758a4cb1a6
commit 4db2efaecb
5 changed files with 406 additions and 4 deletions

View file

@ -34,6 +34,7 @@
O(GetById) \
O(GetByValue) \
O(GetIterator) \
O(GetMethod) \
O(GetNewTarget) \
O(GetObjectPropertyIterator) \
O(GetVariable) \
@ -42,6 +43,7 @@
O(In) \
O(Increment) \
O(InstanceOf) \
O(IteratorClose) \
O(IteratorNext) \
O(IteratorResultDone) \
O(IteratorResultValue) \
@ -68,6 +70,7 @@
O(NewObject) \
O(NewRegExp) \
O(NewString) \
O(NewTypeError) \
O(Not) \
O(PushDeclarativeEnvironment) \
O(PutById) \
@ -82,6 +85,7 @@
O(Sub) \
O(SuperCall) \
O(Throw) \
O(ThrowIfNotObject) \
O(Typeof) \
O(TypeofVariable) \
O(UnaryMinus) \