summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/top-level-await/dfs-invariant.js
blob: 64a6f6803c7dda6234b3bab99c315baf8a09d899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// |reftest| module
// Copyright (C) 2021 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Parent completion orderings match the synchronous module behavior
info: |
  6.2.4 AsyncModuleExecutionFulfilled ( module )

  [...]
  5. Let _execList_ be a new empty List.
  6. Perform ! GatherAsyncParentCompletions(_module_, _execList_).
  7. Let _sortedExecList_ be a List of elements that are the elements of
     _execList_, in the order in which they had their [[AsyncEvaluating]]
     fields set to *true* in InnerModuleEvaluation.
  8. Assert: All elements of _sortedExecList_ have their [[AsyncEvaluating]]
     field set to *true*, [[PendingAsyncDependencies]] field set to 0 and
     [[EvaluationError]] field set to *undefined*.
  [...]

  Dependency graph for this test:

                             dfs-invariant.js
  .-----------------------------------+-------.
  |                                   |       v
  |                                   |       dfs-invariant-indirect_FIXTURE.js
  |                               .---|----------------------'
  v                               v   v
  dfs-invariant-direct-1_FIXTURE.js   dfs-invariant-direct-2_FIXTURE.js
            '--------.                            .--------'
                     v                            v
                     dfs-invariant-async_FIXTURE.js
esid: sec-moduleevaluation
flags: [module]
features: [top-level-await, globalThis]
---*/

import './dfs-invariant-direct-1_FIXTURE.js';
import './dfs-invariant-direct-2_FIXTURE.js';
import './dfs-invariant-indirect_FIXTURE.js';

assert.sameValue(globalThis.test262, 'async:direct-1:direct-2:indirect');

reportCompare(0, 0);