0ceee9ad28
Adds support for parsing top level await to V8, as well as many tests. This is the final cl in the series to add support for top level await to v8. Spec is here: https://tc39.es/proposal-top-level-await/#sec-execute-async-module Bug: v8:9344 Change-Id: Ie8f17ad8c7c60d1f6996d134ae154416cc1f31e3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1703878 Reviewed-by: Georg Neis <neis@chromium.org> Reviewed-by: Adam Klein <adamk@chromium.org> Commit-Queue: Joshua Litt <joshualitt@chromium.org> Cr-Commit-Position: refs/heads/master@{#63946}
13 lines
426 B
JavaScript
13 lines
426 B
JavaScript
// Copyright 2019 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: --harmony-top-level-await
|
|
|
|
assertEquals(globalThis.test262, ['1', '2', '3', '4']);
|
|
|
|
import 'modules-skip-1-rqstd-order.mjs';
|
|
import 'modules-skip-2-rqstd-order.mjs';
|
|
import 'modules-skip-3-rqstd-order.mjs';
|
|
import 'modules-skip-4-rqstd-order.mjs';
|