LibJS: Remove ability to disable bytecode VM

This commit is contained in:
Andreas Kling 2023-08-07 16:52:31 +02:00
commit e2c8d5859e
Notes: sideshowbarker 2024-07-16 23:55:09 +09:00
7 changed files with 2 additions and 24 deletions

View file

@ -576,8 +576,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
args_parser.add_positional_argument(script_paths, "Path to script files", "scripts", Core::ArgsParser::Required::No);
args_parser.parse(arguments);
JS::Bytecode::Interpreter::set_enabled(true);
bool syntax_highlight = !disable_syntax_highlight;
AK::set_debug_enabled(!disable_debug_printing);