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

LibJS/JIT: Compile the DeleteById instruction

This commit is contained in:
Jakub Berkop 2023-10-29 20:29:14 +01:00 committed by Andreas Kling
parent 0104225d9b
commit f5fcd4596c
6 changed files with 33 additions and 6 deletions

View file

@ -114,7 +114,8 @@ private:
O(IteratorResultValue, iterator_result_value) \
O(IteratorClose, iterator_close) \
O(IteratorToArray, iterator_to_array) \
O(Append, append)
O(Append, append) \
O(DeleteById, delete_by_id)
# define DECLARE_COMPILE_OP(OpTitleCase, op_snake_case) \
void compile_##op_snake_case(Bytecode::Op::OpTitleCase const&);