Skip to content

Commit a89bb82

Browse files
committed
address feedback
1 parent c09a8c9 commit a89bb82

File tree

661 files changed

+1342
-1342
lines changed

Some content is hidden

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

661 files changed

+1342
-1342
lines changed

src/compiler/transformers/es2015.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3337,11 +3337,11 @@ namespace ts {
33373337
priority: 0,
33383338
text: `
33393339
var __extends = (this && this.__extends) || (function () {
3340-
var __extendStatics = Object.setPrototypeOf ||
3340+
var extendStatics = Object.setPrototypeOf ||
33413341
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
33423342
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
33433343
return function (d, b) {
3344-
__extendStatics(d, b);
3344+
extendStatics(d, b);
33453345
function __() { this.constructor = d; }
33463346
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
33473347
};

tests/baselines/reference/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ module A {
2222

2323
//// [ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js]
2424
var __extends = (this && this.__extends) || (function () {
25-
var __extendStatics = Object.setPrototypeOf ||
25+
var extendStatics = Object.setPrototypeOf ||
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 function (d, b) {
29-
__extendStatics(d, b);
29+
extendStatics(d, b);
3030
function __() { this.constructor = d; }
3131
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3232
};

tests/baselines/reference/ExportClassWithInaccessibleTypeInTypeParameterConstraint.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ module A {
2626

2727
//// [ExportClassWithInaccessibleTypeInTypeParameterConstraint.js]
2828
var __extends = (this && this.__extends) || (function () {
29-
var __extendStatics = Object.setPrototypeOf ||
29+
var extendStatics = Object.setPrototypeOf ||
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 function (d, b) {
33-
__extendStatics(d, b);
33+
extendStatics(d, b);
3434
function __() { this.constructor = d; }
3535
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3636
};

tests/baselines/reference/abstractClassInLocalScope.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
//// [abstractClassInLocalScope.js]
1111
var __extends = (this && this.__extends) || (function () {
12-
var __extendStatics = Object.setPrototypeOf ||
12+
var extendStatics = Object.setPrototypeOf ||
1313
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1414
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1515
return function (d, b) {
16-
__extendStatics(d, b);
16+
extendStatics(d, b);
1717
function __() { this.constructor = d; }
1818
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
1919
};

tests/baselines/reference/abstractClassInLocalScopeIsAbstract.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
//// [abstractClassInLocalScopeIsAbstract.js]
1111
var __extends = (this && this.__extends) || (function () {
12-
var __extendStatics = Object.setPrototypeOf ||
12+
var extendStatics = Object.setPrototypeOf ||
1313
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
1414
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
1515
return function (d, b) {
16-
__extendStatics(d, b);
16+
extendStatics(d, b);
1717
function __() { this.constructor = d; }
1818
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
1919
};

tests/baselines/reference/abstractProperty.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ class C extends B {
2323

2424
//// [abstractProperty.js]
2525
var __extends = (this && this.__extends) || (function () {
26-
var __extendStatics = Object.setPrototypeOf ||
26+
var extendStatics = Object.setPrototypeOf ||
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 function (d, b) {
30-
__extendStatics(d, b);
30+
extendStatics(d, b);
3131
function __() { this.constructor = d; }
3232
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3333
};

tests/baselines/reference/abstractPropertyNegative.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ abstract class AbstractAccessorMismatch {
4545

4646
//// [abstractPropertyNegative.js]
4747
var __extends = (this && this.__extends) || (function () {
48-
var __extendStatics = Object.setPrototypeOf ||
48+
var extendStatics = Object.setPrototypeOf ||
4949
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5050
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5151
return function (d, b) {
52-
__extendStatics(d, b);
52+
extendStatics(d, b);
5353
function __() { this.constructor = d; }
5454
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
5555
};

tests/baselines/reference/accessOverriddenBaseClassMember1.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ class ColoredPoint extends Point {
1717

1818
//// [accessOverriddenBaseClassMember1.js]
1919
var __extends = (this && this.__extends) || (function () {
20-
var __extendStatics = Object.setPrototypeOf ||
20+
var extendStatics = Object.setPrototypeOf ||
2121
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
2222
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
2323
return function (d, b) {
24-
__extendStatics(d, b);
24+
extendStatics(d, b);
2525
function __() { this.constructor = d; }
2626
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
2727
};

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ class LanguageSpec_section_4_5_inference {
2626

2727
//// [accessors_spec_section-4.5_inference.js]
2828
var __extends = (this && this.__extends) || (function () {
29-
var __extendStatics = Object.setPrototypeOf ||
29+
var extendStatics = Object.setPrototypeOf ||
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 function (d, b) {
33-
__extendStatics(d, b);
33+
extendStatics(d, b);
3434
function __() { this.constructor = d; }
3535
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
3636
};

tests/baselines/reference/aliasUsageInAccessorsOfClass.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ exports.Model = Model;
3838
//// [aliasUsage1_moduleA.js]
3939
"use strict";
4040
var __extends = (this && this.__extends) || (function () {
41-
var __extendStatics = Object.setPrototypeOf ||
41+
var extendStatics = Object.setPrototypeOf ||
4242
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4343
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4444
return function (d, b) {
45-
__extendStatics(d, b);
45+
extendStatics(d, b);
4646
function __() { this.constructor = d; }
4747
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
4848
};

0 commit comments

Comments
 (0)