summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/modules/ambiguous-star-export.js
blob: f90673bd9f6edb8240b88063f85b0a7d60fe074b (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
// Test ambigious export * statements.

"use strict";

load(libdir + "asserts.js");

function checkModuleEval(source) {
    let m = parseModule(source);
    moduleLink(m);
    moduleEvaluate(m);
    return m;
}

function checkModuleSyntaxError(source) {
    let m = parseModule(source);
    assertThrowsInstanceOf(() => moduleLink(m), SyntaxError);
}

let a = registerModule('a', parseModule("export var a = 1; export var b = 2;"));
let b = registerModule('b', parseModule("export var b = 3; export var c = 4;"));
let c = registerModule('c', parseModule("export * from 'a'; export * from 'b';"));
moduleLink(c);
moduleEvaluate(c);

// Check importing/exporting non-ambiguous name works.
let d = checkModuleEval("import { a } from 'c';");
assertEq(getModuleEnvironmentValue(d, "a"), 1);
checkModuleEval("export { a } from 'c';");

// Check importing/exporting ambiguous name is a syntax error.
checkModuleSyntaxError("import { b } from 'c';");
checkModuleSyntaxError("export { b } from 'c';");

// Check that namespace objects include only non-ambiguous names.
let m = parseModule("import * as ns from 'c';");
moduleLink(m);
moduleEvaluate(m);
let ns = c.namespace;
let names = Object.keys(ns);
assertEq(names.length, 2);
assertEq('a' in ns, true);
assertEq('b' in ns, false);
assertEq('c' in ns, true);