summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-03-02 13:39:56 +0100
committerGitHub <noreply@github.com>2021-03-02 13:39:56 +0100
commitfaf2e802724be9d493dad232759b76e7253feab0 (patch)
tree50be81b16f237ef7d366ba29f816906488a5bb88 /cli/tests/bundle/fixture14.out
parentbadc88b78a623d66ae86157d44a438c14dd7616a (diff)
chore: upgrade crates (#9632)
Diffstat (limited to 'cli/tests/bundle/fixture14.out')
-rw-r--r--cli/tests/bundle/fixture14.out31
1 files changed, 1 insertions, 30 deletions
diff --git a/cli/tests/bundle/fixture14.out b/cli/tests/bundle/fixture14.out
index 2534a7015..392bb6478 100644
--- a/cli/tests/bundle/fixture14.out
+++ b/cli/tests/bundle/fixture14.out
@@ -1,31 +1,2 @@
-const mod = function() {
- const mod1 = [];
- return {
- mod: mod1
- };
-}();
+const mod = [];
console.log(mod);
-const mod1 = function() {
- const c = [];
- const c1 = c;
- return {
- c: c
- };
-}();
-const c = mod1;
-const mod2 = function() {
- const b = [];
- const b1 = b;
- return {
- b: b
- };
-}();
-const b = mod2;
-const mod3 = function() {
- const a = [];
- const a1 = a;
- return {
- a: a
- };
-}();
-const a = mod3;