output.js 388 B

1234567891011121314151617181920
  1. var _this = this;
  2. // These are actually handled by transform-arrow-functions
  3. const _x = function x() {
  4. babelHelpers.newArrowCheck(this, _this);
  5. return _x;
  6. }.bind(this);
  7. const y = function y(x) {
  8. babelHelpers.newArrowCheck(this, _this);
  9. return x();
  10. }.bind(this);
  11. const z = {
  12. z: function z() {
  13. babelHelpers.newArrowCheck(this, _this);
  14. return y(_x);
  15. }.bind(this)
  16. }.z;