diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-02-09 13:06:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-09 13:06:24 +0100 |
commit | b85ed4a6f03a631a318adf0afed214445809bfe3 (patch) | |
tree | ccf004a3ec62c859959ee7e71dcfe8e29c29b099 /core/runtime.rs | |
parent | d95666cae04376c041f5276774dc5445c6ca2415 (diff) |
chore: add flag to v8 (#9456)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index c9ecca9aa..1b67550b7 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); |