1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:28:11 +00:00

LibJS/JIT: Compile the PutByValue bytecode instruction

This commit is contained in:
Andreas Kling 2023-10-21 15:55:15 +02:00
parent c2aad0f573
commit 7097169967
3 changed files with 26 additions and 0 deletions

View file

@ -772,6 +772,10 @@ 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; }
PropertyKind kind() const { return m_kind; }
private:
Register m_base;
Register m_property;