mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 02:13:56 +09:00
LibJS: Remove ability to disable bytecode VM
This commit is contained in:
parent
9a709e03a3
commit
e2c8d5859e
Notes:
sideshowbarker
2024-07-16 23:55:09 +09:00
Author: https://github.com/awesomekling
Commit: e2c8d5859e
Pull-request: https://github.com/SerenityOS/serenity/pull/20421
7 changed files with 2 additions and 24 deletions
|
@ -14,7 +14,8 @@ TESTJS_PROGRAM_FLAG(test262_parser_tests, "Run test262 parser tests", "test262-p
|
|||
|
||||
TESTJS_GLOBAL_FUNCTION(is_bytecode_interpreter_enabled, isBytecodeInterpreterEnabled, 0)
|
||||
{
|
||||
return JS::Value(JS::Bytecode::Interpreter::enabled());
|
||||
// FIXME: Remove this function after updating the tests.
|
||||
return JS::Value(true);
|
||||
}
|
||||
|
||||
TESTJS_GLOBAL_FUNCTION(is_strict_mode, isStrictMode, 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue