summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-01-11 15:32:34 +0100
committerGitHub <noreply@github.com>2021-01-11 15:32:34 +0100
commitd676b6c63ada85801673f0e691f8ba11e44e347a (patch)
tree02067230de7802bfe166139a88324dda596c6dc1 /cli/tests/bundle/fixture14.out
parent2b75a1155906613df16bad9d1eb84f3dc0ba571b (diff)
upgrade: swc_bundler 0.19.2 (#9085)
Diffstat (limited to 'cli/tests/bundle/fixture14.out')
-rw-r--r--cli/tests/bundle/fixture14.out18
1 files changed, 9 insertions, 9 deletions
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;