From b85ed4a6f03a631a318adf0afed214445809bfe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 9 Feb 2021 13:06:24 +0100 Subject: [PATCH] chore: add flag to v8 (#9456) --- core/runtime.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/runtime.rs b/core/runtime.rs index c9ecca9aa6..1b67550b76 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -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);