31 lines
604 B
JavaScript
31 lines
604 B
JavaScript
var Example =
|
|
/*#__PURE__*/
|
|
function () {
|
|
function Example() {}
|
|
|
|
var _proto = Example.prototype;
|
|
|
|
_proto.test1 = async function test1() {
|
|
await Promise.resolve(2);
|
|
};
|
|
|
|
_proto.test2 =
|
|
/*#__PURE__*/
|
|
regeneratorRuntime.mark(function test2() {
|
|
return regeneratorRuntime.wrap(function test2$(_context) {
|
|
while (1) {
|
|
switch (_context.prev = _context.next) {
|
|
case 0:
|
|
_context.next = 2;
|
|
return 3;
|
|
|
|
case 2:
|
|
case "end":
|
|
return _context.stop();
|
|
}
|
|
}
|
|
}, test2, this);
|
|
});
|
|
return Example;
|
|
}();
|