mirror of
https://github.com/RGBCube/serenity
synced 2025-05-29 06:45:08 +00:00
LibJS: Add bytecode generation for FunctionExpression :^)
This commit is contained in:
parent
749a3b9245
commit
af48a066c6
3 changed files with 8 additions and 1 deletions
|
@ -605,6 +605,11 @@ void FunctionDeclaration::generate_bytecode(Bytecode::Generator&) const
|
|||
{
|
||||
}
|
||||
|
||||
void FunctionExpression::generate_bytecode(Bytecode::Generator& generator) const
|
||||
{
|
||||
generator.emit<Bytecode::Op::NewFunction>(*this);
|
||||
}
|
||||
|
||||
void VariableDeclaration::generate_bytecode(Bytecode::Generator& generator) const
|
||||
{
|
||||
for (auto& declarator : m_declarations) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue