Sebastian McKenzie c97696c224 first commit
2014-09-28 23:39:22 +10:00

18 lines
341 B
JavaScript

var Test = function (Foo) {
function Test() {
woops.super.test();
Foo.call(this);
Foo.prototype.test.call(this);
foob(Foo);
}
Test.prototype = Object.create(Foo.prototype, {
constructor: {
value: Test,
enumerable: false,
writable: true,
configurable: true
}
});
return Test;
}(Foo);