1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

LibJS/JIT: Compile the SuperCallWithArgumentArray instruction

This commit is contained in:
Simon Wanner 2023-10-29 15:34:01 +01:00 committed by Andreas Kling
parent 1eee110575
commit d247744a3e
3 changed files with 21 additions and 1 deletions

View file

@ -989,6 +989,8 @@ public:
ThrowCompletionOr<void> execute_impl(Bytecode::Interpreter&) const;
DeprecatedString to_deprecated_string_impl(Bytecode::Executable const&) const;
bool is_synthetic() const { return m_is_synthetic; }
private:
bool m_is_synthetic;
};