Skip to content

Commit a5cfa5a

Browse files
author
Joseph Watts
committed
Update baselines
1 parent ad12df3 commit a5cfa5a

File tree

2 files changed

+24
-30
lines changed

2 files changed

+24
-30
lines changed

tests/baselines/reference/mixinClassesAnnotated.js

+12-15
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,18 @@ var Derived = /** @class */ (function (_super) {
9696
}
9797
return Derived;
9898
}(Base));
99-
var Printable = function (superClass) {
100-
var _a;
101-
return _a = /** @class */ (function (_super) {
102-
__extends(class_1, _super);
103-
function class_1() {
104-
return _super !== null && _super.apply(this, arguments) || this;
105-
}
106-
class_1.prototype.print = function () {
107-
var output = this.x + "," + this.y;
108-
};
109-
return class_1;
110-
}(superClass)),
111-
_a.message = "hello",
112-
_a;
113-
};
99+
var Printable = function (superClass) { var _a; return _a = /** @class */ (function (_super) {
100+
__extends(class_1, _super);
101+
function class_1() {
102+
return _super !== null && _super.apply(this, arguments) || this;
103+
}
104+
class_1.prototype.print = function () {
105+
var output = this.x + "," + this.y;
106+
};
107+
return class_1;
108+
}(superClass)),
109+
_a.message = "hello",
110+
_a; };
114111
function Tagged(superClass) {
115112
var C = /** @class */ (function (_super) {
116113
__extends(C, _super);

tests/baselines/reference/mixinClassesAnonymous.js

+12-15
Original file line numberDiff line numberDiff line change
@@ -95,21 +95,18 @@ var Derived = /** @class */ (function (_super) {
9595
}
9696
return Derived;
9797
}(Base));
98-
var Printable = function (superClass) {
99-
var _a;
100-
return _a = /** @class */ (function (_super) {
101-
__extends(class_1, _super);
102-
function class_1() {
103-
return _super !== null && _super.apply(this, arguments) || this;
104-
}
105-
class_1.prototype.print = function () {
106-
var output = this.x + "," + this.y;
107-
};
108-
return class_1;
109-
}(superClass)),
110-
_a.message = "hello",
111-
_a;
112-
};
98+
var Printable = function (superClass) { var _a; return _a = /** @class */ (function (_super) {
99+
__extends(class_1, _super);
100+
function class_1() {
101+
return _super !== null && _super.apply(this, arguments) || this;
102+
}
103+
class_1.prototype.print = function () {
104+
var output = this.x + "," + this.y;
105+
};
106+
return class_1;
107+
}(superClass)),
108+
_a.message = "hello",
109+
_a; };
113110
function Tagged(superClass) {
114111
var C = /** @class */ (function (_super) {
115112
__extends(C, _super);

0 commit comments

Comments
 (0)