Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

15 lines
250 B
JavaScript

var Test = function (_Foo) {
babelHelpers.inheritsLoose(Test, _Foo);
function Test() {
var _this;
_this = _Foo.call(this) || this;
_Foo.prototype.test;
_Foo.prototype.test.whatever;
return _this;
}
return Test;
}(Foo);