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:
parent
847889343f
commit
9494fbe670
3 changed files with 34 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue