Invalid input, this in static property intializer. output is worng in both cases.

This commit is contained in:
Mohamed Hegazy
2016-04-06 17:14:30 -07:00
parent 181ab945af
commit 7e0b3066bc

View File

@@ -9,10 +9,10 @@ class Vector {
}
//// [thisInArrowFunctionInStaticInitializer1.js]
var _this = this;
function log(a) { }
var Vector = (function () {
function Vector() {
var _this = this;
}
return Vector;
}());