mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 22:27:44 +00:00
LibJS: Remove usage of bytecode_interpreter_if_exists()
There is no need to check if bytecode interpreter exists after we switched away from AST interpreter.
This commit is contained in:
parent
0abe2a5023
commit
d978c762bc
5 changed files with 7 additions and 14 deletions
|
@ -192,11 +192,6 @@ Bytecode::Interpreter& VM::bytecode_interpreter()
|
|||
return *m_bytecode_interpreter;
|
||||
}
|
||||
|
||||
Bytecode::Interpreter* VM::bytecode_interpreter_if_exists()
|
||||
{
|
||||
return m_bytecode_interpreter;
|
||||
}
|
||||
|
||||
void VM::gather_roots(HashTable<Cell*>& roots)
|
||||
{
|
||||
roots.set(m_empty_string);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue