0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00

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.
This commit is contained in:
Casper Beyer 2020-10-02 17:27:18 +08:00 committed by GitHub
parent d96e7226dd
commit 454de99680
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}