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

LibJS/JIT: Compile the PutPrivateById instruction

This commit is contained in:
Simon Wanner 2023-10-29 22:20:47 +01:00 committed by Andreas Kling
parent 81697549b7
commit ac43d3f6db
3 changed files with 25 additions and 1 deletions

View file

@ -717,6 +717,9 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
Register base() const { return m_base; }
IdentifierTableIndex property() const { return m_property; }
private:
Register m_base;
IdentifierTableIndex m_property;