Skip to content

Commit 5f96fb1

Browse files
Merge pull request #27313 from spratmannc/spratmannc/fixing-extends-helper
adding missing semi-colon to extendsHelper
2 parents c04faa1 + d7544aa commit 5f96fb1

File tree

773 files changed

+787
-787
lines changed

Some content is hidden

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

773 files changed

+787
-787
lines changed

src/compiler/transformers/es2015.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4376,7 +4376,7 @@ namespace ts {
43764376
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
43774377
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
43784378
return extendStatics(d, b);
4379-
}
4379+
};
43804380
43814381
return function (d, b) {
43824382
extendStatics(d, b);

tests/baselines/reference/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var __extends = (this && this.__extends) || (function () {
2727
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2828
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2929
return extendStatics(d, b);
30-
}
30+
};
3131
return function (d, b) {
3232
extendStatics(d, b);
3333
function __() { this.constructor = d; }

tests/baselines/reference/ExportClassWithInaccessibleTypeInTypeParameterConstraint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var __extends = (this && this.__extends) || (function () {
3131
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3232
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3333
return extendStatics(d, b);
34-
}
34+
};
3535
return function (d, b) {
3636
extendStatics(d, b);
3737
function __() { this.constructor = d; }

tests/baselines/reference/abstractClassInLocalScope.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var __extends = (this && this.__extends) || (function () {
1414
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1515
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1616
return extendStatics(d, b);
17-
}
17+
};
1818
return function (d, b) {
1919
extendStatics(d, b);
2020
function __() { this.constructor = d; }

tests/baselines/reference/abstractClassInLocalScopeIsAbstract.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var __extends = (this && this.__extends) || (function () {
1414
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1515
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1616
return extendStatics(d, b);
17-
}
17+
};
1818
return function (d, b) {
1919
extendStatics(d, b);
2020
function __() { this.constructor = d; }

tests/baselines/reference/abstractProperty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var __extends = (this && this.__extends) || (function () {
2828
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2929
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3030
return extendStatics(d, b);
31-
}
31+
};
3232
return function (d, b) {
3333
extendStatics(d, b);
3434
function __() { this.constructor = d; }

tests/baselines/reference/abstractPropertyInConstructor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ var __extends = (this && this.__extends) || (function () {
7878
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7979
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
8080
return extendStatics(d, b);
81-
}
81+
};
8282
return function (d, b) {
8383
extendStatics(d, b);
8484
function __() { this.constructor = d; }

tests/baselines/reference/abstractPropertyNegative.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var __extends = (this && this.__extends) || (function () {
5050
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5151
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5252
return extendStatics(d, b);
53-
}
53+
};
5454
return function (d, b) {
5555
extendStatics(d, b);
5656
function __() { this.constructor = d; }

tests/baselines/reference/accessOverriddenBaseClassMember1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var __extends = (this && this.__extends) || (function () {
2222
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2323
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2424
return extendStatics(d, b);
25-
}
25+
};
2626
return function (d, b) {
2727
extendStatics(d, b);
2828
function __() { this.constructor = d; }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var __extends = (this && this.__extends) || (function () {
3131
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3232
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3333
return extendStatics(d, b);
34-
}
34+
};
3535
return function (d, b) {
3636
extendStatics(d, b);
3737
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInAccessorsOfClass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var __extends = (this && this.__extends) || (function () {
4444
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4545
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4646
return extendStatics(d, b);
47-
}
47+
};
4848
return function (d, b) {
4949
extendStatics(d, b);
5050
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInArray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var __extends = (this && this.__extends) || (function () {
3838
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3939
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4040
return extendStatics(d, b);
41-
}
41+
};
4242
return function (d, b) {
4343
extendStatics(d, b);
4444
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInFunctionExpression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var __extends = (this && this.__extends) || (function () {
3737
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3838
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3939
return extendStatics(d, b);
40-
}
40+
};
4141
return function (d, b) {
4242
extendStatics(d, b);
4343
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInGenericFunction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var __extends = (this && this.__extends) || (function () {
4141
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4242
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4343
return extendStatics(d, b);
44-
}
44+
};
4545
return function (d, b) {
4646
extendStatics(d, b);
4747
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInIndexerOfClass.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var __extends = (this && this.__extends) || (function () {
4343
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4444
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4545
return extendStatics(d, b);
46-
}
46+
};
4747
return function (d, b) {
4848
extendStatics(d, b);
4949
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInObjectLiteral.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var __extends = (this && this.__extends) || (function () {
3838
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3939
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4040
return extendStatics(d, b);
41-
}
41+
};
4242
return function (d, b) {
4343
extendStatics(d, b);
4444
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInOrExpression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var __extends = (this && this.__extends) || (function () {
4141
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4242
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4343
return extendStatics(d, b);
44-
}
44+
};
4545
return function (d, b) {
4646
extendStatics(d, b);
4747
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInTypeArgumentOfExtendsClause.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var __extends = (this && this.__extends) || (function () {
4141
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4242
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4343
return extendStatics(d, b);
44-
}
44+
};
4545
return function (d, b) {
4646
extendStatics(d, b);
4747
function __() { this.constructor = d; }
@@ -66,7 +66,7 @@ var __extends = (this && this.__extends) || (function () {
6666
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6767
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6868
return extendStatics(d, b);
69-
}
69+
};
7070
return function (d, b) {
7171
extendStatics(d, b);
7272
function __() { this.constructor = d; }

tests/baselines/reference/aliasUsageInVarAssignment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var __extends = (this && this.__extends) || (function () {
3737
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3838
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3939
return extendStatics(d, b);
40-
}
40+
};
4141
return function (d, b) {
4242
extendStatics(d, b);
4343
function __() { this.constructor = d; }

tests/baselines/reference/ambiguousOverloadResolution.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var __extends = (this && this.__extends) || (function () {
1515
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1616
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1717
return extendStatics(d, b);
18-
}
18+
};
1919
return function (d, b) {
2020
extendStatics(d, b);
2121
function __() { this.constructor = d; }

tests/baselines/reference/amdDeclarationEmitNoExtraDeclare.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var __extends = (this && this.__extends) || (function () {
2828
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2929
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3030
return extendStatics(d, b);
31-
}
31+
};
3232
return function (d, b) {
3333
extendStatics(d, b);
3434
function __() { this.constructor = d; }

tests/baselines/reference/anonymousClassDeclarationDoesntPrintWithReadonly.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var __extends = (this && this.__extends) || (function () {
1515
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1616
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1717
return extendStatics(d, b);
18-
}
18+
};
1919
return function (d, b) {
2020
extendStatics(d, b);
2121
function __() { this.constructor = d; }

tests/baselines/reference/apparentTypeSubtyping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var __extends = (this && this.__extends) || (function () {
3030
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3131
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3232
return extendStatics(d, b);
33-
}
33+
};
3434
return function (d, b) {
3535
extendStatics(d, b);
3636
function __() { this.constructor = d; }

tests/baselines/reference/apparentTypeSupertype.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var __extends = (this && this.__extends) || (function () {
2020
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2121
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2222
return extendStatics(d, b);
23-
}
23+
};
2424
return function (d, b) {
2525
extendStatics(d, b);
2626
function __() { this.constructor = d; }

tests/baselines/reference/arrayAssignmentTest1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ var __extends = (this && this.__extends) || (function () {
9292
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9393
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
9494
return extendStatics(d, b);
95-
}
95+
};
9696
return function (d, b) {
9797
extendStatics(d, b);
9898
function __() { this.constructor = d; }

tests/baselines/reference/arrayAssignmentTest2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var __extends = (this && this.__extends) || (function () {
6666
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6767
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6868
return extendStatics(d, b);
69-
}
69+
};
7070
return function (d, b) {
7171
extendStatics(d, b);
7272
function __() { this.constructor = d; }

tests/baselines/reference/arrayBestCommonTypes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ var __extends = (this && this.__extends) || (function () {
114114
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
115115
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
116116
return extendStatics(d, b);
117-
}
117+
};
118118
return function (d, b) {
119119
extendStatics(d, b);
120120
function __() { this.constructor = d; }

tests/baselines/reference/arrayLiteralTypeInference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var __extends = (this && this.__extends) || (function () {
5858
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5959
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6060
return extendStatics(d, b);
61-
}
61+
};
6262
return function (d, b) {
6363
extendStatics(d, b);
6464
function __() { this.constructor = d; }

tests/baselines/reference/arrayLiterals.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var __extends = (this && this.__extends) || (function () {
4444
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4545
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4646
return extendStatics(d, b);
47-
}
47+
};
4848
return function (d, b) {
4949
extendStatics(d, b);
5050
function __() { this.constructor = d; }

tests/baselines/reference/arrayLiteralsWithRecursiveGenerics.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var __extends = (this && this.__extends) || (function () {
3232
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
3333
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
3434
return extendStatics(d, b);
35-
}
35+
};
3636
return function (d, b) {
3737
extendStatics(d, b);
3838
function __() { this.constructor = d; }

tests/baselines/reference/arrayOfSubtypeIsAssignableToReadonlyArray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var __extends = (this && this.__extends) || (function () {
2626
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2727
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2828
return extendStatics(d, b);
29-
}
29+
};
3030
return function (d, b) {
3131
extendStatics(d, b);
3232
function __() { this.constructor = d; }

tests/baselines/reference/arrowFunctionContexts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ var __extends = (this && this.__extends) || (function () {
102102
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
103103
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
104104
return extendStatics(d, b);
105-
}
105+
};
106106
return function (d, b) {
107107
extendStatics(d, b);
108108
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithCallSignatures3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var __extends = (this && this.__extends) || (function () {
107107
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
108108
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
109109
return extendStatics(d, b);
110-
}
110+
};
111111
return function (d, b) {
112112
extendStatics(d, b);
113113
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithCallSignatures4.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ var __extends = (this && this.__extends) || (function () {
106106
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
107107
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
108108
return extendStatics(d, b);
109-
}
109+
};
110110
return function (d, b) {
111111
extendStatics(d, b);
112112
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithCallSignatures5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var __extends = (this && this.__extends) || (function () {
7373
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7474
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7575
return extendStatics(d, b);
76-
}
76+
};
7777
return function (d, b) {
7878
extendStatics(d, b);
7979
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithCallSignatures6.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var __extends = (this && this.__extends) || (function () {
5050
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5151
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5252
return extendStatics(d, b);
53-
}
53+
};
5454
return function (d, b) {
5555
extendStatics(d, b);
5656
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithConstructSignatures3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ var __extends = (this && this.__extends) || (function () {
107107
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
108108
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
109109
return extendStatics(d, b);
110-
}
110+
};
111111
return function (d, b) {
112112
extendStatics(d, b);
113113
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithConstructSignatures4.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ var __extends = (this && this.__extends) || (function () {
106106
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
107107
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
108108
return extendStatics(d, b);
109-
}
109+
};
110110
return function (d, b) {
111111
extendStatics(d, b);
112112
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithConstructSignatures5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var __extends = (this && this.__extends) || (function () {
7373
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
7474
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7575
return extendStatics(d, b);
76-
}
76+
};
7777
return function (d, b) {
7878
extendStatics(d, b);
7979
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithConstructSignatures6.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var __extends = (this && this.__extends) || (function () {
5050
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5151
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5252
return extendStatics(d, b);
53-
}
53+
};
5454
return function (d, b) {
5555
extendStatics(d, b);
5656
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithNumericIndexer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var __extends = (this && this.__extends) || (function () {
5151
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5252
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5353
return extendStatics(d, b);
54-
}
54+
};
5555
return function (d, b) {
5656
extendStatics(d, b);
5757
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithNumericIndexer3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var __extends = (this && this.__extends) || (function () {
4848
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4949
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5050
return extendStatics(d, b);
51-
}
51+
};
5252
return function (d, b) {
5353
extendStatics(d, b);
5454
function __() { this.constructor = d; }

tests/baselines/reference/assignmentCompatWithObjectMembers4.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ var __extends = (this && this.__extends) || (function () {
9999
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
100100
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
101101
return extendStatics(d, b);
102-
}
102+
};
103103
return function (d, b) {
104104
extendStatics(d, b);
105105
function __() { this.constructor = d; }

0 commit comments

Comments
 (0)