1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:18:11 +00:00

LibJS: Add bytecode generation for DebuggerStatement

No-op. :^)
This commit is contained in:
Linus Groh 2021-06-07 20:05:50 +01:00
parent fa9bad912e
commit 2b8a2542a0
2 changed files with 6 additions and 0 deletions

View file

@ -298,4 +298,9 @@ Optional<Bytecode::Register> ContinueStatement::generate_bytecode(Bytecode::Gene
return {};
}
Optional<Bytecode::Register> DebuggerStatement::generate_bytecode(Bytecode::Generator&) const
{
return {};
}
}