1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

LibJS/JIT: Compile the NewRegExp bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-27 17:07:30 +02:00
parent d6756decb9
commit c1551a64dc
6 changed files with 60 additions and 22 deletions

View file

@ -98,6 +98,7 @@ private:
void compile_new_object(Bytecode::Op::NewObject const&);
void compile_new_array(Bytecode::Op::NewArray const&);
void compile_new_function(Bytecode::Op::NewFunction const&);
void compile_new_regexp(Bytecode::Op::NewRegExp const&);
void compile_get_by_id(Bytecode::Op::GetById const&);
void compile_get_by_value(Bytecode::Op::GetByValue const&);