Skip to content

Commit e1aa034

Browse files
committed
update baselines
1 parent 0ec9c04 commit e1aa034

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tests/baselines/reference/derivedUninitializedPropertyDeclaration.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,7 @@ var BDBang = /** @class */ (function (_super) {
113113
var BOther = /** @class */ (function (_super) {
114114
__extends(BOther, _super);
115115
function BOther() {
116-
var _this = _super !== null && _super.apply(this, arguments) || this;
117-
_this.property = 'y'; // initialiser not allowed with declare
118-
return _this;
116+
return _super !== null && _super.apply(this, arguments) || this;
119117
}
120118
BOther.prototype.m = function () { return 2; }; // not allowed on methods
121119
return BOther;

tests/baselines/reference/illegalModifiersOnClassElements.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ class C {
77
//// [illegalModifiersOnClassElements.js]
88
var C = /** @class */ (function () {
99
function C() {
10-
this.foo = 1;
1110
this.bar = 1;
1211
}
1312
return C;

0 commit comments

Comments
 (0)