output.js 388 B

1234567891011121314151617181920212223
  1. function f() {
  2. g(
  3. /*#__PURE__*/
  4. babelHelpers.asyncToGenerator(function* () {
  5. var _this = this;
  6. c(function () {
  7. return _this;
  8. });
  9. }));
  10. }
  11. /*#__PURE__*/
  12. babelHelpers.asyncToGenerator(function* () {
  13. var _this2 = this;
  14. console.log('async wrapper:', this === 'foo');
  15. (function () {
  16. console.log('nested arrow:', _this2 === 'foo');
  17. })();
  18. }).call('foo');