fix static member expression calls, make classes more spec-compliant

This commit is contained in:
Sebastian McKenzie
2014-10-12 13:39:10 +11:00
parent 141ea98b89
commit bb697c6436
34 changed files with 158 additions and 128 deletions

View File

@@ -8,15 +8,13 @@ exports.default = foo;
exports.default = function () {}
exports.default = function () {
function Anonymous() {
}
return Anonymous;
var _class = function() {};
return _class;
}();
exports.default = function foo () {}
exports.default = function () {
function foo() {
}
var foo = function foo() {};
return foo;
}();

View File

@@ -25,8 +25,7 @@ var foo8;
function foo7 () {}
foo8 = function () {
function foo8() {
}
var foo8 = function foo8() {};
return foo8;
}();
exports.foo8 = foo8;