mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibJS/JIT: Compile the PutByValue bytecode instruction
This commit is contained in:
parent
c2aad0f573
commit
7097169967
Notes:
sideshowbarker
2024-07-17 16:23:55 +09:00
Author: https://github.com/awesomekling
Commit: 7097169967
Pull-request: https://github.com/SerenityOS/serenity/pull/21619
Reviewed-by: https://github.com/Hendiadyoin1
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