Skip to content

Commit b549c2a

Browse files
committed
Update baselines
1 parent b603b36 commit b549c2a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/baselines/reference/javascriptThisAssignmentInStaticBlock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var ElementsArray = /** @class */ (function (_super) {
5757
_b = ElementsArray;
5858
(function () {
5959
var superisArray = _super.isArray;
60-
var customIsArray = function (arg) { return superisArray(arg); };
60+
var customIsArray = function customIsArray(arg) { return superisArray(arg); };
6161
_b.isArray = customIsArray;
6262
})();
6363
ElementsArray.isArray(new ElementsArray());

tests/baselines/reference/templateStringInArrowFunction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
var x = x => `abc${ x }def`;
33

44
//// [templateStringInArrowFunction.js]
5-
var x = function x_1(x) { return "abc" + x + "def"; };
5+
var x = function x_1(x) { return "abc".concat(x, "def"); };

tests/baselines/reference/templateStringWithCommentsInArrowFunction.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ const f2 = () =>
1515

1616
//// [templateStringWithCommentsInArrowFunction.js]
1717
var a = 1;
18-
var f1 = function () {
18+
var f1 = function f1() {
1919
return "".concat(
2020
// a
2121
a, "a");
2222
};
23-
var f2 = function () {
23+
var f2 = function f2() {
2424
return "".concat(
2525
// a
2626
a);

0 commit comments

Comments
 (0)