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

@@ -1,14 +1,14 @@
var Test = function () {
function Test() {
var Test = function Test() {
this.state = "test";
}
};
return Test;
}();
var Foo = function(Bar) {
function Foo() {
var Foo = function Foo() {
this.state = "test";
}
};
Foo.prototype = Object.create(Bar.prototype, {
constructor: {