fixed strictModeInConstructor baseline reference

This commit is contained in:
shyyko.serhiy@gmail.com
2015-07-14 17:02:18 +03:00
parent 1066f0e3cc
commit aec0fb4818

View File

@@ -74,8 +74,8 @@ var A = (function () {
var B = (function (_super) {
__extends(B, _super);
function B() {
this.s = 9;
"use strict"; // No error
this.s = 9;
_super.call(this);
}
return B;