Skip to content

Commit 8f02979

Browse files
committed
Accept missing baseline updates for #13721
1 parent eeb40fe commit 8f02979

22 files changed

+46
-46
lines changed

tests/baselines/reference/errorForUsingPropertyOfTypeAsType01.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var Test1;
5252
})(Test1 || (Test1 = {}));
5353
var Test2;
5454
(function (Test2) {
55-
var Foo = (function () {
55+
var Foo = /** @class */ (function () {
5656
function Foo() {
5757
}
5858
return Foo;

tests/baselines/reference/exportDefaultClassInNamespace.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace ns_abstract_class {
1111
//// [exportDefaultClassInNamespace.js]
1212
var ns_class;
1313
(function (ns_class) {
14-
var default_1 = (function () {
14+
var default_1 = /** @class */ (function () {
1515
function default_1() {
1616
}
1717
return default_1;
@@ -20,7 +20,7 @@ var ns_class;
2020
})(ns_class || (ns_class = {}));
2121
var ns_abstract_class;
2222
(function (ns_abstract_class) {
23-
var default_2 = (function () {
23+
var default_2 = /** @class */ (function () {
2424
function default_2() {
2525
}
2626
return default_2;

tests/baselines/reference/expressionTypeNodeShouldError.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ type ItemType3 = true.typeof(nodes.item(0));
4848

4949

5050
//// [string.js]
51-
var C = (function () {
51+
var C = /** @class */ (function () {
5252
function C() {
5353
}
5454
C.prototype.foo = function () {
@@ -60,7 +60,7 @@ var C = (function () {
6060
var nodes = document.getElementsByTagName("li");
6161
typeof (nodes.item(0));
6262
//// [number.js]
63-
var C2 = (function () {
63+
var C2 = /** @class */ (function () {
6464
function C2() {
6565
}
6666
C2.prototype.foo = function () {
@@ -72,7 +72,7 @@ var C2 = (function () {
7272
var nodes2 = document.getElementsByTagName("li");
7373
typeof (nodes.item(0));
7474
//// [boolean.js]
75-
var C3 = (function () {
75+
var C3 = /** @class */ (function () {
7676
function C3() {
7777
}
7878
C3.prototype.foo = function () {

tests/baselines/reference/importCallExpressionAsyncES3AMD.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ define(["require", "exports"], function (require, exports) {
8383
});
8484
}
8585
exports.fn = fn;
86-
var cl1 = (function () {
86+
var cl1 = /** @class */ (function () {
8787
function cl1() {
8888
}
8989
cl1.prototype.m = function () {
@@ -117,7 +117,7 @@ define(["require", "exports"], function (require, exports) {
117117
});
118118
}); }
119119
};
120-
var cl2 = (function () {
120+
var cl2 = /** @class */ (function () {
121121
function cl2() {
122122
var _this = this;
123123
this.p = {

tests/baselines/reference/importCallExpressionAsyncES3CJS.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function fn() {
8282
});
8383
}
8484
exports.fn = fn;
85-
var cl1 = (function () {
85+
var cl1 = /** @class */ (function () {
8686
function cl1() {
8787
}
8888
cl1.prototype.m = function () {
@@ -116,7 +116,7 @@ exports.obj = {
116116
});
117117
}); }
118118
};
119-
var cl2 = (function () {
119+
var cl2 = /** @class */ (function () {
120120
function cl2() {
121121
var _this = this;
122122
this.p = {

tests/baselines/reference/importCallExpressionAsyncES3System.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ System.register([], function (exports_1, context_1) {
8787
return {
8888
setters: [],
8989
execute: function () {
90-
cl1 = (function () {
90+
cl1 = /** @class */ (function () {
9191
function cl1() {
9292
}
9393
cl1.prototype.m = function () {
@@ -121,7 +121,7 @@ System.register([], function (exports_1, context_1) {
121121
});
122122
}); }
123123
});
124-
cl2 = (function () {
124+
cl2 = /** @class */ (function () {
125125
function cl2() {
126126
var _this = this;
127127
this.p = {

tests/baselines/reference/importCallExpressionAsyncES3UMD.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
9292
});
9393
}
9494
exports.fn = fn;
95-
var cl1 = (function () {
95+
var cl1 = /** @class */ (function () {
9696
function cl1() {
9797
}
9898
cl1.prototype.m = function () {
@@ -126,7 +126,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
126126
});
127127
}); }
128128
};
129-
var cl2 = (function () {
129+
var cl2 = /** @class */ (function () {
130130
function cl2() {
131131
var _this = this;
132132
this.p = {

tests/baselines/reference/importCallExpressionAsyncES5AMD.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ define(["require", "exports"], function (require, exports) {
8383
});
8484
}
8585
exports.fn = fn;
86-
var cl1 = (function () {
86+
var cl1 = /** @class */ (function () {
8787
function cl1() {
8888
}
8989
cl1.prototype.m = function () {
@@ -117,7 +117,7 @@ define(["require", "exports"], function (require, exports) {
117117
});
118118
}); }
119119
};
120-
var cl2 = (function () {
120+
var cl2 = /** @class */ (function () {
121121
function cl2() {
122122
var _this = this;
123123
this.p = {

tests/baselines/reference/importCallExpressionAsyncES5CJS.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ function fn() {
8282
});
8383
}
8484
exports.fn = fn;
85-
var cl1 = (function () {
85+
var cl1 = /** @class */ (function () {
8686
function cl1() {
8787
}
8888
cl1.prototype.m = function () {
@@ -116,7 +116,7 @@ exports.obj = {
116116
});
117117
}); }
118118
};
119-
var cl2 = (function () {
119+
var cl2 = /** @class */ (function () {
120120
function cl2() {
121121
var _this = this;
122122
this.p = {

tests/baselines/reference/importCallExpressionAsyncES5System.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ System.register([], function (exports_1, context_1) {
8787
return {
8888
setters: [],
8989
execute: function () {
90-
cl1 = (function () {
90+
cl1 = /** @class */ (function () {
9191
function cl1() {
9292
}
9393
cl1.prototype.m = function () {
@@ -121,7 +121,7 @@ System.register([], function (exports_1, context_1) {
121121
});
122122
}); }
123123
});
124-
cl2 = (function () {
124+
cl2 = /** @class */ (function () {
125125
function cl2() {
126126
var _this = this;
127127
this.p = {

0 commit comments

Comments
 (0)