diff options
Diffstat (limited to 'cli/tests/bundle/fixture14.out')
-rw-r--r-- | cli/tests/bundle/fixture14.out | 50 |
1 files changed, 28 insertions, 22 deletions
diff --git a/cli/tests/bundle/fixture14.out b/cli/tests/bundle/fixture14.out index c1a14cebe..cb0b4834f 100644 --- a/cli/tests/bundle/fixture14.out +++ b/cli/tests/bundle/fixture14.out @@ -1,25 +1,31 @@ -const lib = function() { - const a = function() { - const a1 = []; - return { - a: a1 - }; - }(); - const b = function() { - const b1 = []; - return { - b: b1 - }; - }(); - const c = function() { - const c1 = []; - return { - c: c1 - }; - }(); - const mod = []; +const mod = function() { + const a = []; + const a1 = a; return { - mod + a }; }(); -console.log(lib); +const a = mod; +const mod1 = function() { + const b = []; + const b1 = b; + return { + b + }; +}(); +const b = mod1; +const mod2 = function() { + const c = []; + const c1 = c; + return { + c + }; +}(); +const c = mod2; +const mod3 = function() { + const mod4 = []; + return { + mod: mod4 + }; +}(); +console.log(mod3); |