mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:58:11 +00:00
LibJS: Generate bytecode for throw statements
This commit is contained in:
parent
e9bafd768d
commit
b78f1c1261
5 changed files with 35 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
||||
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
||||
* Copyright (c) 2021, Gunnar Beutner <gbeutner@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
@ -668,4 +669,10 @@ void UpdateExpression::generate_bytecode(Bytecode::Generator& generator) const
|
|||
TODO();
|
||||
}
|
||||
|
||||
void ThrowStatement::generate_bytecode(Bytecode::Generator& generator) const
|
||||
{
|
||||
m_argument->generate_bytecode(generator);
|
||||
generator.emit<Bytecode::Op::Throw>();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue