diff options
| author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-26 17:00:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-26 17:00:40 +0100 |
| commit | 40fc5f55ea582755d221a3445a2f5f388845bc23 (patch) | |
| tree | bb9a8110ba797cb802a08643343c423abcd0b75c /cli/tests/bundle/fixture11.out | |
| parent | eb30c6f510ba49fbabcd0121fde5159605eddd77 (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/fixture11.out')
| -rw-r--r-- | cli/tests/bundle/fixture11.out | 28 |
1 files changed, 15 insertions, 13 deletions
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(); |
