summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/modules/global-scope.js
blob: b99019fa86b98f0c4efd60a72edd3e6b5b633412 (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
// Test interaction with global object and global lexical scope.

function evalModuleAndCheck(source, expected) {
    let m = parseModule(source);
    m.declarationInstantiation();
    m.evaluation();
    assertEq(getModuleEnvironmentValue(m, "r"), expected);
}

var x = 1;
evalModuleAndCheck("export let r = x; x = 2;", 1);
assertEq(x, 2);

let y = 3;
evalModuleAndCheck("export let r = y; y = 4;", 3);
assertEq(y, 4);

if (helperThreadCount() == 0)
    quit();

function offThreadEvalModuleAndCheck(source, expected) {
    offThreadCompileModule(source);
    let m = finishOffThreadModule();
    print("compiled");
    m.declarationInstantiation();
    m.evaluation();
    assertEq(getModuleEnvironmentValue(m, "r"), expected);
}

offThreadEvalModuleAndCheck("export let r = x; x = 5;", 2);
assertEq(x, 5);

offThreadEvalModuleAndCheck("export let r = y; y = 6;", 4);
assertEq(y, 6);