1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:38:10 +00:00

LibJS: Remove ability to disable bytecode VM

This commit is contained in:
Andreas Kling 2023-08-07 16:52:31 +02:00
parent 9a709e03a3
commit e2c8d5859e
7 changed files with 2 additions and 24 deletions

View file

@ -208,8 +208,6 @@ Bytecode::Interpreter& VM::bytecode_interpreter()
Bytecode::Interpreter* VM::bytecode_interpreter_if_exists()
{
if (!Bytecode::Interpreter::enabled())
return nullptr;
return m_bytecode_interpreter;
}