14 lines
209 B
JavaScript

class C {
g() {
var _this = this;
return babelHelpers.wrapAsyncGenerator(function* () {
_this;
yield babelHelpers.awaitAsyncGenerator(1);
yield 2;
return 3;
})();
}
}