LibJS/JIT: Compile the BlockDeclarationInstantiation instruction

This commit is contained in:
Simon Wanner 2023-10-29 15:13:28 +01:00 committed by Andreas Kling
commit 09dce5f1bd
Notes: sideshowbarker 2024-07-16 20:08:14 +09:00
3 changed files with 20 additions and 1 deletions

View file

@ -1047,6 +1047,8 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
ScopeNode const& scope_node() const { return m_scope_node; }
private:
ScopeNode const& m_scope_node;
};