Skip to content

Commit aca7df3

Browse files
committed
Update baselines
1 parent 926810b commit aca7df3

File tree

504 files changed

+1296
-729
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

504 files changed

+1296
-729
lines changed

tests/baselines/reference/abstractClassInLocalScope.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ var __extends = (this && this.__extends) || (function () {
2020
function __() { this.constructor = d; }
2121
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2222
};
23-
})();(function () {
23+
})();
24+
(function () {
2425
var A = /** @class */ (function () {
2526
function A() {}
2627
return A;

tests/baselines/reference/abstractClassInLocalScopeIsAbstract.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ var __extends = (this && this.__extends) || (function () {
2020
function __() { this.constructor = d; }
2121
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2222
};
23-
})();(function () {
23+
})();
24+
(function () {
2425
var A = /** @class */ (function () {
2526
function A() {}
2627
return A;

tests/baselines/reference/abstractPropertyInConstructor.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ var __extends = (this && this.__extends) || (function () {
8484
function __() { this.constructor = d; }
8585
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
8686
};
87-
})();var AbstractClass = /** @class */ (function () {
87+
})();
88+
var AbstractClass = /** @class */ (function () {
8889
function AbstractClass(str, other) {
8990
var _this = this;
9091
this.other = this.prop;

tests/baselines/reference/accessOverriddenBaseClassMember1.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ var __extends = (this && this.__extends) || (function () {
2828
function __() { this.constructor = d; }
2929
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3030
};
31-
})();var Point = /** @class */ (function () {
31+
})();
32+
var Point = /** @class */ (function () {
3233
function Point(x, y) {
3334
this.x = x;
3435
this.y = y;

tests/baselines/reference/accessorsOverrideProperty7.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ var __extends = (this && this.__extends) || (function () {
2020
function __() { this.constructor = d; }
2121
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2222
};
23-
})();var A = /** @class */ (function () {
23+
})();
24+
var A = /** @class */ (function () {
2425
function A() {
2526
Object.defineProperty(this, "p", {
2627
enumerable: true,

tests/baselines/reference/accessors_spec_section-4.5_inference.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ var __extends = (this && this.__extends) || (function () {
3737
function __() { this.constructor = d; }
3838
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3939
};
40-
})();var A = /** @class */ (function () {
40+
})();
41+
var A = /** @class */ (function () {
4142
function A() {}
4243
return A;
4344
}());

tests/baselines/reference/ambiguousOverloadResolution.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ var __extends = (this && this.__extends) || (function () {
2121
function __() { this.constructor = d; }
2222
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2323
};
24-
})();var A = /** @class */ (function () {
24+
})();
25+
var A = /** @class */ (function () {
2526
function A() {}
2627
return A;
2728
}());

tests/baselines/reference/arrayLiteralSpread.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ var __spreadArrays = (this && this.__spreadArrays) || function () {
3030
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
3131
r[k] = a[j];
3232
return r;
33-
};function f0() {
33+
};
34+
function f0() {
3435
var a = [1, 2, 3];
3536
var a1 = __spreadArrays(a);
3637
var a2 = __spreadArrays([1], a);

tests/baselines/reference/arrayLiteralSpreadES5iterable.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ var __read = (this && this.__read) || function (o, n) {
4343
var __spread = (this && this.__spread) || function () {
4444
for (var ar = [], i = 0; i < arguments.length; i++) ar = ar.concat(__read(arguments[i]));
4545
return ar;
46-
};function f0() {
46+
};
47+
function f0() {
4748
var a = [1, 2, 3];
4849
var a1 = __spread(a);
4950
var a2 = __spread([1], a);

tests/baselines/reference/arrayLiteralTypeInference.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ var __extends = (this && this.__extends) || (function () {
6464
function __() { this.constructor = d; }
6565
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
6666
};
67-
})();var Action = /** @class */ (function () {
67+
})();
68+
var Action = /** @class */ (function () {
6869
function Action() {
6970
}
7071
return Action;

0 commit comments

Comments
 (0)