LibJS: Add bytecode generation for DebuggerStatement

No-op. :^)
This commit is contained in:
Linus Groh 2021-06-07 20:05:50 +01:00
commit 2b8a2542a0
Notes: sideshowbarker 2024-07-18 12:40:57 +09:00
2 changed files with 6 additions and 0 deletions

View file

@ -1319,6 +1319,7 @@ public:
}
virtual Value execute(Interpreter&, GlobalObject&) const override;
virtual Optional<Bytecode::Register> generate_bytecode(Bytecode::Generator&) const override;
};
template<typename C>