LibJS: Implement SuperCall for the Bytecode-VM

This commit is contained in:
Hendiadyoin1 2022-08-30 18:03:02 +02:00 committed by Linus Groh
commit 21ae882cfd
Notes: sideshowbarker 2024-07-17 07:36:14 +09:00
5 changed files with 130 additions and 2 deletions

View file

@ -1516,6 +1516,7 @@ public:
virtual Completion execute(Interpreter&) const override;
virtual void dump(int indent) const override;
virtual Bytecode::CodeGenerationErrorOr<void> generate_bytecode(Bytecode::Generator&) const override;
private:
Vector<CallExpression::Argument> const m_arguments;