1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:17:34 +00:00

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
parent fd059d4e4a
commit 847889343f
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; \
};