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

LibJS/JIT: Compile the DeleteByValueWithThis instruction

This commit is contained in:
Jakub Berkop 2023-10-29 21:37:52 +01:00 committed by Andreas Kling
parent 0776404e03
commit 6a7b9b85a4
6 changed files with 35 additions and 8 deletions

View file

@ -850,6 +850,9 @@ public:
{
}
Register base() const { return m_base; }
Register this_value() const { return m_this_value; }
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;