summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/module-code/instn-star-iee-cycle.js
blob: 3dbb85d9bd081e8fa2583dabbbf9f91c64644b77 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// |reftest| module
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
    There are no restrictions on the number of cycles during module traversal
    during indirect export resolution, given unique export names.
esid: sec-moduledeclarationinstantiation
info: |
    [...]
    12. For each ImportEntry Record in in module.[[ImportEntries]], do
        a. Let importedModule be ? HostResolveImportedModule(module,
           in.[[ModuleRequest]]).
        b. If in.[[ImportName]] is "*", then
           i. Let namespace be ? GetModuleNamespace(importedModule).
           ii. Perform ! envRec.CreateImmutableBinding(in.[[LocalName]], true).
           iii. Call envRec.InitializeBinding(in.[[LocalName]], namespace).
        [...]

    15.2.1.16.3 ResolveExport( exportName, resolveSet, exportStarSet )

    2. For each Record {[[Module]], [[ExportName]]} r in resolveSet, do:
       a. If module and r.[[Module]] are the same Module Record and
          SameValue(exportName, r.[[ExportName]]) is true, then
          i. Assert: this is a circular import request.
          ii. Return null.
    3. Append the Record {[[Module]]: module, [[ExportName]]: exportName} to resolveSet.
    [...]
    5. For each ExportEntry Record e in module.[[IndirectExportEntries]], do
       a. If SameValue(exportName, e.[[ExportName]]) is true, then
          i. Assert: module imports a specific binding for this export.
          ii. Let importedModule be ? HostResolveImportedModule(module,
              e.[[ModuleRequest]]).
          iii. Let indirectResolution be ?
               importedModule.ResolveExport(e.[[ImportName]], resolveSet,
               exportStarSet).
          iv. If indirectResolution is not null, return indirectResolution.
flags: [module]
---*/

import * as ns from './instn-star-iee-cycle-2_FIXTURE.js';
export { c as b } from './instn-star-iee-cycle-2_FIXTURE.js';
export { e as d } from './instn-star-iee-cycle-2_FIXTURE.js';
export { g as f } from './instn-star-iee-cycle-2_FIXTURE.js';
export { i as h } from './instn-star-iee-cycle-2_FIXTURE.js';
export { k as j } from './instn-star-iee-cycle-2_FIXTURE.js';
export { m as l } from './instn-star-iee-cycle-2_FIXTURE.js';
export { o as n } from './instn-star-iee-cycle-2_FIXTURE.js';
export { q as p } from './instn-star-iee-cycle-2_FIXTURE.js';
export { s as r } from './instn-star-iee-cycle-2_FIXTURE.js';
export { u as t } from './instn-star-iee-cycle-2_FIXTURE.js';
export { w as v } from './instn-star-iee-cycle-2_FIXTURE.js';
export { y as x } from './instn-star-iee-cycle-2_FIXTURE.js';
export var z = 23;

assert.sameValue(ns.a, 23);

reportCompare(0, 0);