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

LibJS/JIT: Compile the GetIterator instruction

This commit is contained in:
Simon Wanner 2023-10-29 15:53:36 +01:00 committed by Andreas Kling
parent d416cef9bb
commit 4f8f8b7792
3 changed files with 21 additions and 1 deletions

View file

@ -105,7 +105,8 @@ private:
O(ContinuePendingUnwind, continue_pending_unwind) \
O(ConcatString, concat_string) \
O(BlockDeclarationInstantiation, block_declaration_instantiation) \
O(SuperCallWithArgumentArray, super_call_with_argument_array)
O(SuperCallWithArgumentArray, super_call_with_argument_array) \
O(GetIterator, get_iterator)
# define DECLARE_COMPILE_OP(OpTitleCase, op_snake_case) \
void compile_##op_snake_case(Bytecode::Op::OpTitleCase const&);