1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:37:44 +00:00

LibJS/JIT: Compile the ToNumeric bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-20 12:27:31 +02:00
parent 0f735b3502
commit b2602a4bae
2 changed files with 17 additions and 0 deletions

View file

@ -41,6 +41,7 @@ private:
void compile_enter_unwind_context(Bytecode::Op::EnterUnwindContext const&);
void compile_leave_unwind_context(Bytecode::Op::LeaveUnwindContext const&);
void compile_throw(Bytecode::Op::Throw const&);
void compile_to_numeric(Bytecode::Op::ToNumeric const&);
#define DO_COMPILE_COMMON_BINARY_OP(OpTitleCase, op_snake_case) \
void compile_##op_snake_case(Bytecode::Op::OpTitleCase const&);