From 40fc5f55ea582755d221a3445a2f5f388845bc23 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 26 Jan 2021 17:00:40 +0100 Subject: chore: update crates (#9251) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0). Co-authored-by: Kitson Kelly Co-authored-by: Bartek IwaƄczuk --- cli/tests/bundle/fixture11.out | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'cli/tests/bundle/fixture11.out') diff --git a/cli/tests/bundle/fixture11.out b/cli/tests/bundle/fixture11.out index 9c22c3b09..876eb45ac 100644 --- a/cli/tests/bundle/fixture11.out +++ b/cli/tests/bundle/fixture11.out @@ -1,22 +1,25 @@ -var O2; +function a() { + console.log("a"); +} +const a1 = a; +var O3; (function(O1) { O1[O1["A"] = 0] = "A"; O1[O1["B"] = 1] = "B"; O1[O1["C"] = 2] = "C"; -})(O2 || (O2 = { +})(O3 || (O3 = { })); -function a() { - console.log("a"); -} -const O1 = O2; -export { O1 as O }; +const O1 = O3; +const a2 = a1; +const O2 = O1; +export { O2 as O }; class A { #a; #c; constructor(o = { }){ - const { a: a1 = a , c , } = o; - this.#a = a1; + const { a: a3 = a2 , c , } = o; + this.#a = a3; this.#c = c; } a() { @@ -26,7 +29,6 @@ class A { console.log(this.#c); } } -const a2 = new A(); -a2.a(); -a2.c(); -const O3 = O2; +const a4 = new A(); +a4.a(); +a4.c(); -- cgit v1.2.3