Skip to content

Commit aec0fb4

Browse files
committed
fixed strictModeInConstructor baseline reference
1 parent 1066f0e commit aec0fb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/baselines/reference/strictModeInConstructor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ var A = (function () {
7474
var B = (function (_super) {
7575
__extends(B, _super);
7676
function B() {
77-
this.s = 9;
7877
"use strict"; // No error
78+
this.s = 9;
7979
_super.call(this);
8080
}
8181
return B;

0 commit comments

Comments
 (0)