Files
babel/test/fixtures/transformation/es6-classes/super-class/expected.js
2015-03-07 01:25:18 +11:00

14 lines
241 B
JavaScript

"use strict";
var Test = (function (_Foo) {
function Test() {
babelHelpers.classCallCheck(this, Test);
if (_Foo != null) {
_Foo.apply(this, arguments);
}
}
babelHelpers.inherits(Test, _Foo);
return Test;
})(Foo);