Files
babel/packages/babel-plugin-transform-class-properties/test/fixtures/loose/super-statement/expected.js
2017-09-11 11:18:37 -04:00

17 lines
342 B
JavaScript

var Foo =
/*#__PURE__*/
function (_Bar) {
babelHelpers.inherits(Foo, _Bar);
function Foo() {
var _this;
babelHelpers.classCallCheck(this, Foo);
_this = babelHelpers.possibleConstructorReturn(this, (Foo.__proto__ || Object.getPrototypeOf(Foo)).call(this));
_this.bar = "foo";
return _this;
}
return Foo;
}(Bar);