2018-01-09 15:36:42 +01:00

14 lines
216 B
JavaScript

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