1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

LibJS/JIT: Compile the ConcatString bytecode instruction

This commit is contained in:
Simon Wanner 2023-10-29 00:06:54 +02:00 committed by Andreas Kling
parent cafe60d713
commit 1d3062de9e
3 changed files with 21 additions and 0 deletions

View file

@ -362,6 +362,8 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
Register lhs() const { return m_lhs; }
private:
Register m_lhs;
};