summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture14.out
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-11-21 13:17:42 +0100
committerGitHub <noreply@github.com>2020-11-21 13:17:42 +0100
commitb63fe3f35c6dd06059e3d34e566b95ed9ccf2724 (patch)
tree82ea51402796f6bb0b785a4cb4d44f50dd69dae5 /cli/tests/bundle/fixture14.out
parente35e8981f0280905836d3b68fd5ceb6e3c2bc270 (diff)
upgrade: deno_doc, deno_lint, dprint, swc (#8443)
Diffstat (limited to 'cli/tests/bundle/fixture14.out')
-rw-r--r--cli/tests/bundle/fixture14.out50
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);