summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture13.out
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/bundle/fixture13.out')
-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();