From ce953ceb4569f0c93cda7dc55c46fe4867233bdc Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 2 Sep 2016 13:04:14 -0700 Subject: [PATCH] Accepted baselines. --- .../emitSuperCallBeforeEmitParameterPropertyDeclaration1.js | 2 +- .../reference/emitSuperCallBeforeEmitPropertyDeclaration1.js | 2 +- ...EmitPropertyDeclarationAndParameterPropertyDeclaration1.js | 2 +- tests/baselines/reference/strictModeInConstructor.js | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.js b/tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.js index b95263464a7..efed8e66a15 100644 --- a/tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.js +++ b/tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.js @@ -28,9 +28,9 @@ var A = (function () { var B = (function (_super) { __extends(B, _super); function B(x) { - var _this; "use strict"; 'someStringForEgngInject'; + var _this; _this = _super.call(this) || this; _this.x = x; return _this; diff --git a/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.js b/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.js index f078c448b75..6e3d3bfaa1b 100644 --- a/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.js +++ b/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.js @@ -30,9 +30,9 @@ var A = (function () { var B = (function (_super) { __extends(B, _super); function B() { - var _this; "use strict"; 'someStringForEgngInject'; + var _this; _this = _super.call(this) || this; _this.blub = 12; return _this; diff --git a/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.js b/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.js index e64af9ef862..6559569fe79 100644 --- a/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.js +++ b/tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclarationAndParameterPropertyDeclaration1.js @@ -28,9 +28,9 @@ var A = (function () { var B = (function (_super) { __extends(B, _super); function B(x) { - var _this; "use strict"; 'someStringForEgngInject'; + var _this; _this = _super.call(this) || this; _this.x = x; _this.blah = 2; diff --git a/tests/baselines/reference/strictModeInConstructor.js b/tests/baselines/reference/strictModeInConstructor.js index 4e1c483f1c1..1c33f16a3c6 100644 --- a/tests/baselines/reference/strictModeInConstructor.js +++ b/tests/baselines/reference/strictModeInConstructor.js @@ -74,8 +74,8 @@ var A = (function () { var B = (function (_super) { __extends(B, _super); function B() { - var _this; "use strict"; // No error + var _this; _this = _super.call(this) || this; _this.s = 9; return _this; @@ -108,8 +108,8 @@ var D = (function (_super) { var Bs = (function (_super) { __extends(Bs, _super); function Bs() { - var _this; "use strict"; // No error + var _this; _this = _super.call(this) || this; return _this; }