Skip to content

Commit 03ac7cc

Browse files
Accepted baselines.
1 parent 2f6ba08 commit 03ac7cc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/baselines/reference/superCallWithCommentEmit01.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@ var A = (function () {
2525
var B = (function (_super) {
2626
__extends(B, _super);
2727
function B(text) {
28-
return
2928
// this is subclass constructor
30-
_super.call(this, text) || this;
29+
return _super.call(this, text) || this;
3130
}
3231
return B;
3332
}(A));

0 commit comments

Comments
 (0)