12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- class Class {
- method() {
- var _this = this;
- return babelHelpers.asyncToGenerator(function* () {
- _this;
- () => _this;
- () => {
- _this;
- () => _this;
- function x() {
- var _this2 = this;
- this;
- () => {
- this;
- };
- /*#__PURE__*/
- babelHelpers.asyncToGenerator(function* () {
- _this2;
- });
- }
- };
- function x() {
- var _this3 = this;
- this;
- () => {
- this;
- };
- /*#__PURE__*/
- babelHelpers.asyncToGenerator(function* () {
- _this3;
- });
- }
- })();
- }
- }
|