1cb0fac0a7
Note that top-level await is already on-by-default in blink. This flips the flag in V8 only for other embedders. Bug: v8:9344 Change-Id: Ic860b22316718b353a0493799fdf95200a71acc1 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2746843 Commit-Queue: Shu-yu Guo <syg@chromium.org> Auto-Submit: Shu-yu Guo <syg@chromium.org> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#73416}
14 lines
464 B
JavaScript
14 lines
464 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --allow-natives-syntax --harmony-dynamic-import
|
|
|
|
var error1, error2;
|
|
import('modules-skip-11.mjs').catch(e => { error1 = e });
|
|
import('modules-skip-11.mjs').catch(e => { error2 = e });
|
|
%PerformMicrotaskCheckpoint();
|
|
|
|
assertEquals(error1, error2);
|
|
assertEquals(typeof error1, "symbol");
|