1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 17:58:12 +00:00

LibJS: Remove Bytecode::Interpreter::debug_position()

This was only used in one place, and that place is already covered
by a VERIFY anyway.
This commit is contained in:
Andreas Kling 2023-09-26 15:36:45 +02:00
parent 0c746366cc
commit 213b835b57
3 changed files with 0 additions and 12 deletions

View file

@ -88,7 +88,6 @@ public:
Executable const& current_executable() const { return *m_current_executable; }
BasicBlock const& current_block() const { return *m_current_block; }
auto& instruction_stream_iterator() const { return m_pc; }
DeprecatedString debug_position() const;
void visit_edges(Cell::Visitor&);