fix incorrect member expression properties

This commit is contained in:
Sebastian McKenzie
2015-01-02 16:39:35 +11:00
parent b34fcb0cd9
commit 6e8c73f65f
5 changed files with 14 additions and 12 deletions

View File

@@ -24,8 +24,8 @@ var Test = (function () {
_Foo.call.apply(_Foo, [this].concat(_slice.call(arguments)));
_Foo.call.apply(_Foo, [this, "test"].concat(_slice.call(arguments)));
_Foo.prototype.test.call.apply(_Foo.prototype, [this].concat(_slice.call(arguments)));
_Foo.prototype.test.call.apply(_Foo.prototype, [this, "test"].concat(_slice.call(arguments)));
_Foo.prototype.test.call.apply(_Foo.prototype.test, [this].concat(_slice.call(arguments)));
_Foo.prototype.test.call.apply(_Foo.prototype.test, [this, "test"].concat(_slice.call(arguments)));
};
_inherits(Test, _Foo);