mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibJS/JIT: Compile the GetByIdWithThis instruction
This commit is contained in:
parent
ad81f49b02
commit
569ca57e22
Notes:
sideshowbarker
2024-07-16 23:13:25 +09:00
Author: https://github.com/skyrising
Commit: 569ca57e22
Pull-request: https://github.com/SerenityOS/serenity/pull/21682
3 changed files with 27 additions and 1 deletions
|
@ -604,6 +604,10 @@ public:
|
|||
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
|
||||
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
|
||||
|
||||
IdentifierTableIndex property() const { return m_property; }
|
||||
Register this_value() const { return m_this_value; }
|
||||
u32 cache_index() const { return m_cache_index; }
|
||||
|
||||
private:
|
||||
IdentifierTableIndex m_property;
|
||||
Register m_this_value;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue