1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-09 07:39:15 -05:00

chore: add flag to v8 (#9456)

This commit is contained in:
Bartek Iwańczuk 2021-02-09 13:06:24 +01:00 committed by GitHub
parent d95666cae0
commit b85ed4a6f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,6 +158,7 @@ pub unsafe fn v8_init() {
// See https://github.com/denoland/deno/issues/2544
"--no-wasm-async-compilation".to_string(),
"--harmony-top-level-await".to_string(),
"--harmony-import-assertions".to_string(),
"--no-validate-asm".to_string(),
];
v8::V8::set_flags_from_command_line(argv);