LibJS: Generate bytecode for throw statements

This commit is contained in:
Gunnar Beutner 2021-06-09 18:18:56 +02:00 committed by Andreas Kling
commit b78f1c1261
Notes: sideshowbarker 2024-07-18 12:32:58 +09:00
5 changed files with 35 additions and 1 deletions

View file

@ -1245,6 +1245,7 @@ public:
virtual void dump(int indent) const override;
virtual Value execute(Interpreter&, GlobalObject&) const override;
virtual void generate_bytecode(Bytecode::Generator&) const override;
private:
NonnullRefPtr<Expression> m_argument;