mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 19:07:35 +00:00
LibJS: Add bytecode generation for DebuggerStatement
No-op. :^)
This commit is contained in:
parent
fa9bad912e
commit
2b8a2542a0
2 changed files with 6 additions and 0 deletions
|
@ -1319,6 +1319,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual Value execute(Interpreter&, GlobalObject&) const override;
|
virtual Value execute(Interpreter&, GlobalObject&) const override;
|
||||||
|
virtual Optional<Bytecode::Register> generate_bytecode(Bytecode::Generator&) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<typename C>
|
template<typename C>
|
||||||
|
|
|
@ -298,4 +298,9 @@ Optional<Bytecode::Register> ContinueStatement::generate_bytecode(Bytecode::Gene
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Optional<Bytecode::Register> DebuggerStatement::generate_bytecode(Bytecode::Generator&) const
|
||||||
|
{
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue