1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 14:50:45 +00:00

LibJS: Remove the isBytecodeInterpreterEnabled built-in

This commit is contained in:
Timothy Flynn 2023-08-09 15:15:34 -04:00 committed by Luke Wilde
parent 375a6f5dd9
commit 7003c6ffdb

View File

@ -12,12 +12,6 @@ TEST_ROOT("Userland/Libraries/LibJS/Tests");
TESTJS_PROGRAM_FLAG(test262_parser_tests, "Run test262 parser tests", "test262-parser-tests", 0);
TESTJS_GLOBAL_FUNCTION(is_bytecode_interpreter_enabled, isBytecodeInterpreterEnabled, 0)
{
// FIXME: Remove this function after updating the tests.
return JS::Value(true);
}
TESTJS_GLOBAL_FUNCTION(is_strict_mode, isStrictMode, 0)
{
return JS::Value(vm.in_strict_mode());