From 7003c6ffdb118cdd825be8797255abc1244d8e2a Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 9 Aug 2023 15:15:34 -0400 Subject: [PATCH] LibJS: Remove the isBytecodeInterpreterEnabled built-in --- Tests/LibJS/test-js.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Tests/LibJS/test-js.cpp b/Tests/LibJS/test-js.cpp index 7b4243d53e..a921778a79 100644 --- a/Tests/LibJS/test-js.cpp +++ b/Tests/LibJS/test-js.cpp @@ -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());