diff options
Diffstat (limited to 'deps/v8/test/mjsunit/harmony/bigint/basics.js')
-rw-r--r-- | deps/v8/test/mjsunit/harmony/bigint/basics.js | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/deps/v8/test/mjsunit/harmony/bigint/basics.js b/deps/v8/test/mjsunit/harmony/bigint/basics.js index 5ea89009a3..398d670ca8 100644 --- a/deps/v8/test/mjsunit/harmony/bigint/basics.js +++ b/deps/v8/test/mjsunit/harmony/bigint/basics.js @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// Flags: --allow-natives-syntax --harmony-bigint --no-opt +// Flags: --allow-natives-syntax --harmony-bigint 'use strict' @@ -105,14 +105,6 @@ const six = BigInt(6); assertTrue(typeof 1n === "bigint"); assertFalse(typeof 1n === "BigInt"); assertFalse(typeof 1 === "bigint"); -}{ - // TODO(neis): Enable once --no-opt can be removed. - // - // function Typeof(x) { return typeof x } - // assertEquals(Typeof(zero), "bigint"); - // assertEquals(Typeof(zero), "bigint"); - // %OptimizeFunctionOnNextCall(Typeof); - // assertEquals(Typeof(zero), "bigint"); } // ToString |