summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture10.out
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-01-26 17:00:40 +0100
committerGitHub <noreply@github.com>2021-01-26 17:00:40 +0100
commit40fc5f55ea582755d221a3445a2f5f388845bc23 (patch)
treebb9a8110ba797cb802a08643343c423abcd0b75c /cli/tests/bundle/fixture10.out
parenteb30c6f510ba49fbabcd0121fde5159605eddd77 (diff)
chore: update crates (#9251)
Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0). Co-authored-by: Kitson Kelly <me@kitsonkelly.com> Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/bundle/fixture10.out')
-rw-r--r--cli/tests/bundle/fixture10.out7
1 files changed, 4 insertions, 3 deletions
diff --git a/cli/tests/bundle/fixture10.out b/cli/tests/bundle/fixture10.out
index 209c19612..776aac1ae 100644
--- a/cli/tests/bundle/fixture10.out
+++ b/cli/tests/bundle/fixture10.out
@@ -1,5 +1,6 @@
+const a = "a";
+const a1 = a;
const o = {
};
-const a = "a";
-const { a: a1 = a } = o;
-console.log(a1);
+const { a: a2 = a1 } = o;
+console.log(a2);