Files
babel/packages/babel-plugin-transform-es2015-classes/test/fixtures/loose/super-class/expected.js

11 lines
248 B
JavaScript

var Test = (function (_Foo) {
babelHelpers.inherits(Test, _Foo);
function Test() {
babelHelpers.classCallCheck(this, Test);
return babelHelpers.possibleConstructorReturn(this, _Foo.apply(this, arguments));
}
return Test;
})(Foo);