summaryrefslogtreecommitdiff
path: root/cli/tests/bundle
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-04-09 23:35:29 +0200
committerGitHub <noreply@github.com>2021-04-09 23:35:29 +0200
commit1c7217e3909c72135020ff415e61644e20e1f62c (patch)
treee7fc2943aec824a3755dc627c7e10fa4f821a1b5 /cli/tests/bundle
parent0fd1fb9329512258064c3c04e3c2d990f3748834 (diff)
chore: upgrade dependencies (#10094)
This commit upgrades: - swc_ecmascript - swc_bundler - deno_doc - deno_lint - dprint-plugin-typescript
Diffstat (limited to 'cli/tests/bundle')
-rw-r--r--cli/tests/bundle/fixture13.out4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/bundle/fixture13.out b/cli/tests/bundle/fixture13.out
index 1c7a8c991..2c5115280 100644
--- a/cli/tests/bundle/fixture13.out
+++ b/cli/tests/bundle/fixture13.out
@@ -9,9 +9,11 @@ function d() {
return Object.assign(promise, methods);
}
class A {
- s = d();
a() {
this.s.resolve();
}
+ constructor(){
+ this.s = d();
+ }
}
new A();