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

LibJS/JIT: Compile the PutByValueWithThis instruction

This commit is contained in:
Simon Wanner 2023-10-30 01:32:20 +01:00 committed by Andreas Kling
parent 847889343f
commit 9494fbe670
3 changed files with 34 additions and 1 deletions

View file

@ -844,6 +844,11 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
Register base() const { return m_base; }
Register property() const { return m_property; }
Register this_value() const { return m_this_value; }
PropertyKind kind() const { return m_kind; }
private:
Register m_base;
Register m_property;