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:
parent
c2aad0f573
commit
7097169967
3 changed files with 26 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue