remove IIFE on class declarations #288

This commit is contained in:
Sebastian McKenzie
2014-12-13 17:33:35 +11:00
parent 525169460a
commit 833a4900da
19 changed files with 180 additions and 247 deletions

View File

@@ -16,12 +16,8 @@ var Test = function Test() {
this.state = "test";
};
var Foo = (function (Bar) {
var Foo = function Foo() {
this.state = "test";
};
var Foo = function Foo() {
this.state = "test";
};
_extends(Foo, Bar);
return Foo;
})(Bar);
_extends(Foo, Bar);