From 454de99680db7fdf93bcf0f41beb81d594e17271 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Fri, 2 Oct 2020 17:27:18 +0800 Subject: [PATCH] chore(core): remove experimental wasm bigint flag (#7790) This removes the experimental bigint flag as it is enabled by default now and is no longer necessary. --- core/runtime.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/core/runtime.rs b/core/runtime.rs index dfb6172232..64396c1f52 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -157,7 +157,6 @@ pub unsafe fn v8_init() { "--wasm-test-streaming".to_string(), "--no-wasm-async-compilation".to_string(), "--harmony-top-level-await".to_string(), - "--experimental-wasm-bigint".to_string(), ]; v8::V8::set_flags_from_command_line(argv); }