1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 02:28:12 +00:00

LibJS/JIT: Compile the NewClass bytecode instruction

This commit is contained in:
Simon Wanner 2023-10-29 02:59:50 +01:00 committed by Andreas Kling
parent f9fbb8cff2
commit 4b23a7dfb4
3 changed files with 25 additions and 0 deletions

View file

@ -100,6 +100,7 @@ private:
void compile_new_function(Bytecode::Op::NewFunction const&);
void compile_new_regexp(Bytecode::Op::NewRegExp const&);
void compile_new_bigint(Bytecode::Op::NewBigInt const&);
void compile_new_class(Bytecode::Op::NewClass const&);
void compile_create_variable(Bytecode::Op::CreateVariable const&);