LibJS/JIT: Compile the New##ErrorName instructions

This commit is contained in:
Simon Wanner 2023-10-30 01:12:58 +01:00 committed by Andreas Kling
commit 847889343f
Notes: sideshowbarker 2024-07-17 06:28:38 +09:00
3 changed files with 25 additions and 2 deletions

View file

@ -212,6 +212,8 @@ private:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const; \
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const; \
\
StringTableIndex error_string() const { return m_error_string; } \
\
private: \
StringTableIndex m_error_string; \
};