0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

feat(core): enable experimental-wasm-bigint (#6443)

This commit is contained in:
Casper Beyer 2020-06-24 00:42:23 +08:00 committed by GitHub
parent d615f0ff82
commit 63db3e933e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,6 +165,7 @@ pub unsafe fn v8_init() {
"".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);
}