summaryrefslogtreecommitdiff
path: root/core/runtime.rs
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-10-02 17:27:18 +0800
committerGitHub <noreply@github.com>2020-10-02 11:27:18 +0200
commit454de99680db7fdf93bcf0f41beb81d594e17271 (patch)
tree1c4d116aa2d2719e5eb7e3fa599773761189635d /core/runtime.rs
parentd96e7226dd8909351c230b6f9820f952dddb0ece (diff)
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.
Diffstat (limited to 'core/runtime.rs')
-rw-r--r--core/runtime.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/runtime.rs b/core/runtime.rs
index dfb617223..64396c1f5 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);
}