summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
blob: 80532a1ddc4c498d2710981dc0b4ecfa60d4ab26 (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
const mod = function() {
    const mod1 = [];
    return {
        mod: mod1
    };
}();
console.log(mod);
const mod1 = function() {
    const a = [];
    const a1 = a;
    return {
        a
    };
}();
const a = mod1;
const mod2 = function() {
    const b = [];
    const b1 = b;
    return {
        b
    };
}();
const b = mod2;
const mod3 = function() {
    const c = [];
    const c1 = c;
    return {
        c
    };
}();
const c = mod3;