restructure test directory

This commit is contained in:
Sebastian McKenzie
2014-10-11 22:42:31 +11:00
parent a1b2da49d7
commit bb9b7455b5
312 changed files with 24 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
class Test {
constructor() {
this.state = "test";
}
}
class Foo extends Bar {
constructor() {
this.state = "test";
}
}

View File

@@ -0,0 +1,24 @@
var Test = function () {
function Test() {
this.state = "test";
}
return Test;
}();
var Foo = function(Bar) {
function Foo() {
this.state = "test";
}
Foo.prototype = Object.create(Bar.prototype, {
constructor: {
value: Foo,
enumerable: false,
writable: true,
configurable: true
}
});
Foo.__proto__ = Bar;
return Foo;
}(Bar);