update baselines

This commit is contained in:
Nathan Shively-Sanders
2019-11-12 15:08:42 -08:00
parent 0ec9c04896
commit e1aa034a7a
2 changed files with 1 additions and 4 deletions
@@ -113,9 +113,7 @@ var BDBang = /** @class */ (function (_super) {
var BOther = /** @class */ (function (_super) {
__extends(BOther, _super);
function BOther() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.property = 'y'; // initialiser not allowed with declare
return _this;
return _super !== null && _super.apply(this, arguments) || this;
}
BOther.prototype.m = function () { return 2; }; // not allowed on methods
return BOther;
@@ -7,7 +7,6 @@ class C {
//// [illegalModifiersOnClassElements.js]
var C = /** @class */ (function () {
function C() {
this.foo = 1;
this.bar = 1;
}
return C;