From 7e0b3066bc4bcb0af7179d8a789b2fcf64bfabd1 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Wed, 6 Apr 2016 17:14:30 -0700 Subject: [PATCH] Invalid input, this in static property intializer. output is worng in both cases. --- .../reference/thisInArrowFunctionInStaticInitializer1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/baselines/reference/thisInArrowFunctionInStaticInitializer1.js b/tests/baselines/reference/thisInArrowFunctionInStaticInitializer1.js index 07d65c726b3..03b86b1d225 100644 --- a/tests/baselines/reference/thisInArrowFunctionInStaticInitializer1.js +++ b/tests/baselines/reference/thisInArrowFunctionInStaticInitializer1.js @@ -9,10 +9,10 @@ class Vector { } //// [thisInArrowFunctionInStaticInitializer1.js] +var _this = this; function log(a) { } var Vector = (function () { function Vector() { - var _this = this; } return Vector; }());