remove dead files

This commit is contained in:
Sebastian McKenzie
2015-07-12 12:35:53 +01:00
parent 3d21b85d87
commit 7a268c95a5
3 changed files with 0 additions and 35 deletions

View File

@@ -1,11 +0,0 @@
class Foo {}
class Bar extends Foo {
methodA(){}
constructor(){
super();
}
methodB(){}
}

View File

@@ -1,21 +0,0 @@
"use strict";
var Foo = function Foo() {
babelHelpers.classCallCheck(this, Foo);
};
var Bar = (function (_Foo) {
babelHelpers.inherits(Bar, _Foo);
Bar.prototype.methodA = function methodA() {};
function Bar() {
babelHelpers.classCallCheck(this, Bar);
_Foo.call(this);
}
Bar.prototype.methodB = function methodB() {};
return Bar;
})(Foo);