From d676b6c63ada85801673f0e691f8ba11e44e347a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 11 Jan 2021 15:32:34 +0100 Subject: upgrade: swc_bundler 0.19.2 (#9085) --- cli/tests/bundle/fixture14.out | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'cli/tests/bundle/fixture14.out') diff --git a/cli/tests/bundle/fixture14.out b/cli/tests/bundle/fixture14.out index 80532a1dd..2534a7015 100644 --- a/cli/tests/bundle/fixture14.out +++ b/cli/tests/bundle/fixture14.out @@ -6,26 +6,26 @@ const mod = function() { }(); console.log(mod); const mod1 = function() { - const a = []; - const a1 = a; + const c = []; + const c1 = c; return { - a + c: c }; }(); -const a = mod1; +const c = mod1; const mod2 = function() { const b = []; const b1 = b; return { - b + b: b }; }(); const b = mod2; const mod3 = function() { - const c = []; - const c1 = c; + const a = []; + const a1 = a; return { - c + a: a }; }(); -const c = mod3; +const a = mod3; -- cgit v1.2.3