Skip to content

Commit 1fbdb86

Browse files
Accepted baselines.
1 parent c668644 commit 1fbdb86

File tree

520 files changed

+1217
-2346
lines changed

Some content is hidden

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

520 files changed

+1217
-2346
lines changed

tests/baselines/reference/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ var A;
3838
var Point3d = (function (_super) {
3939
__extends(Point3d, _super);
4040
function Point3d() {
41-
var _this = _super.apply(this, arguments) || this;
42-
return _this;
41+
return _super.apply(this, arguments) || this;
4342
}
4443
return Point3d;
4544
}(Point));

tests/baselines/reference/ExportClassWithInaccessibleTypeInTypeParameterConstraint.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ var A;
4141
var Point3d = (function (_super) {
4242
__extends(Point3d, _super);
4343
function Point3d() {
44-
var _this = _super.apply(this, arguments) || this;
45-
return _this;
44+
return _super.apply(this, arguments) || this;
4645
}
4746
return Point3d;
4847
}(Point));

tests/baselines/reference/abstractClassInLocalScope.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ var __extends = (this && this.__extends) || function (d, b) {
2222
var B = (function (_super) {
2323
__extends(B, _super);
2424
function B() {
25-
var _this = _super.apply(this, arguments) || this;
26-
return _this;
25+
return _super.apply(this, arguments) || this;
2726
}
2827
return B;
2928
}(A));

tests/baselines/reference/abstractClassInLocalScopeIsAbstract.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ var __extends = (this && this.__extends) || function (d, b) {
2222
var B = (function (_super) {
2323
__extends(B, _super);
2424
function B() {
25-
var _this = _super.apply(this, arguments) || this;
26-
return _this;
25+
return _super.apply(this, arguments) || this;
2726
}
2827
return B;
2928
}(A));

tests/baselines/reference/abstractPropertyNegative.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ var WrongTypeAccessor = (function () {
9292
var WrongTypeAccessorImpl = (function (_super) {
9393
__extends(WrongTypeAccessorImpl, _super);
9494
function WrongTypeAccessorImpl() {
95-
var _this = _super.apply(this, arguments) || this;
96-
return _this;
95+
return _super.apply(this, arguments) || this;
9796
}
9897
Object.defineProperty(WrongTypeAccessorImpl.prototype, "num", {
9998
get: function () { return "nope, wrong"; },

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ var A = (function () {
3838
var B = (function (_super) {
3939
__extends(B, _super);
4040
function B() {
41-
var _this = _super.apply(this, arguments) || this;
42-
return _this;
41+
return _super.apply(this, arguments) || this;
4342
}
4443
return B;
4544
}(A));

tests/baselines/reference/aliasUsageInAccessorsOfClass.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ var Backbone = require("./aliasUsage1_backbone");
4646
var VisualizationModel = (function (_super) {
4747
__extends(VisualizationModel, _super);
4848
function VisualizationModel() {
49-
var _this = _super.apply(this, arguments) || this;
50-
return _this;
49+
return _super.apply(this, arguments) || this;
5150
}
5251
return VisualizationModel;
5352
}(Backbone.Model));

tests/baselines/reference/aliasUsageInArray.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ var Backbone = require("./aliasUsageInArray_backbone");
4040
var VisualizationModel = (function (_super) {
4141
__extends(VisualizationModel, _super);
4242
function VisualizationModel() {
43-
var _this = _super.apply(this, arguments) || this;
44-
return _this;
43+
return _super.apply(this, arguments) || this;
4544
}
4645
return VisualizationModel;
4746
}(Backbone.Model));

tests/baselines/reference/aliasUsageInFunctionExpression.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ var Backbone = require("./aliasUsageInFunctionExpression_backbone");
3939
var VisualizationModel = (function (_super) {
4040
__extends(VisualizationModel, _super);
4141
function VisualizationModel() {
42-
var _this = _super.apply(this, arguments) || this;
43-
return _this;
42+
return _super.apply(this, arguments) || this;
4443
}
4544
return VisualizationModel;
4645
}(Backbone.Model));

tests/baselines/reference/aliasUsageInGenericFunction.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ var Backbone = require("./aliasUsageInGenericFunction_backbone");
4343
var VisualizationModel = (function (_super) {
4444
__extends(VisualizationModel, _super);
4545
function VisualizationModel() {
46-
var _this = _super.apply(this, arguments) || this;
47-
return _this;
46+
return _super.apply(this, arguments) || this;
4847
}
4948
return VisualizationModel;
5049
}(Backbone.Model));

0 commit comments

Comments
 (0)