mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 04:47:03 +03:00
refactor(es/transforms/compat): Migrate to VisitMut
(#2709)
swc_ecma_transforms_compat: - `async_to_generator`: Migrate to `VisitMut`.
This commit is contained in:
parent
544835a3a5
commit
6148d0c3da
@ -32,6 +32,9 @@ var source = Math.random() < 2 ? 'matilda' : 'fred';
|
|||||||
var details = {
|
var details = {
|
||||||
_id: '1'
|
_id: '1'
|
||||||
};
|
};
|
||||||
|
function request(path) {
|
||||||
|
return _request.apply(this, arguments);
|
||||||
|
}
|
||||||
function _request() {
|
function _request() {
|
||||||
_request = _asyncToGenerator(regeneratorRuntime.mark(function _callee(path) {
|
_request = _asyncToGenerator(regeneratorRuntime.mark(function _callee(path) {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -46,9 +49,6 @@ function _request() {
|
|||||||
}));
|
}));
|
||||||
return _request.apply(this, arguments);
|
return _request.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function request(path) {
|
|
||||||
return _request.apply(this, arguments);
|
|
||||||
}
|
|
||||||
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var obj;
|
var obj;
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
|
@ -32,6 +32,9 @@ var source = Math.random() < 2 ? 'matilda' : 'fred';
|
|||||||
var details = {
|
var details = {
|
||||||
_id: '1'
|
_id: '1'
|
||||||
};
|
};
|
||||||
|
function request(path) {
|
||||||
|
return _request.apply(this, arguments);
|
||||||
|
}
|
||||||
function _request() {
|
function _request() {
|
||||||
_request = _asyncToGenerator(regeneratorRuntime.mark(function _callee(path) {
|
_request = _asyncToGenerator(regeneratorRuntime.mark(function _callee(path) {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -46,9 +49,6 @@ function _request() {
|
|||||||
}));
|
}));
|
||||||
return _request.apply(this, arguments);
|
return _request.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function request(path) {
|
|
||||||
return _request.apply(this, arguments);
|
|
||||||
}
|
|
||||||
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var obj;
|
var obj;
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
|
@ -31,6 +31,9 @@ function _asyncToGenerator(fn) {
|
|||||||
function _throw(e) {
|
function _throw(e) {
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_foo = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var tmp, ref, ref;
|
var tmp, ref, ref;
|
||||||
@ -47,6 +50,3 @@ function _foo() {
|
|||||||
}));
|
}));
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -59,6 +59,9 @@ function _nonIterableRest() {
|
|||||||
function _slicedToArray(arr, i) {
|
function _slicedToArray(arr, i) {
|
||||||
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest();
|
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _nonIterableRest();
|
||||||
}
|
}
|
||||||
|
function f(a, b) {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee(a, b) {
|
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee(a, b) {
|
||||||
var ref, ref1, tmp, a_;
|
var ref, ref1, tmp, a_;
|
||||||
@ -74,6 +77,3 @@ function _f() {
|
|||||||
}));
|
}));
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f(a, b) {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function scanUser(groups) {
|
||||||
|
return _scanUser.apply(this, arguments);
|
||||||
|
}
|
||||||
function _scanUser() {
|
function _scanUser() {
|
||||||
_scanUser = _asyncToGenerator(regeneratorRuntime.mark(function _callee1(groups) {
|
_scanUser = _asyncToGenerator(regeneratorRuntime.mark(function _callee1(groups) {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx1) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx1) {
|
||||||
@ -110,9 +113,6 @@ function _scanUser() {
|
|||||||
}));
|
}));
|
||||||
return _scanUser.apply(this, arguments);
|
return _scanUser.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function scanUser(groups) {
|
|
||||||
return _scanUser.apply(this, arguments);
|
|
||||||
}
|
|
||||||
scanUser([
|
scanUser([
|
||||||
{
|
{
|
||||||
users: [
|
users: [
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function scanUser(groups) {
|
||||||
|
return _scanUser.apply(this, arguments);
|
||||||
|
}
|
||||||
function _scanUser() {
|
function _scanUser() {
|
||||||
_scanUser = _asyncToGenerator(function*(groups) {
|
_scanUser = _asyncToGenerator(function*(groups) {
|
||||||
yield Promise.all(groups.map(_asyncToGenerator(function*({ users }) {
|
yield Promise.all(groups.map(_asyncToGenerator(function*({ users }) {
|
||||||
@ -39,9 +42,6 @@ function _scanUser() {
|
|||||||
});
|
});
|
||||||
return _scanUser.apply(this, arguments);
|
return _scanUser.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function scanUser(groups) {
|
|
||||||
return _scanUser.apply(this, arguments);
|
|
||||||
}
|
|
||||||
scanUser([
|
scanUser([
|
||||||
{
|
{
|
||||||
users: [
|
users: [
|
||||||
|
@ -88,6 +88,9 @@ function _wrapAsyncGenerator(fn) {
|
|||||||
return new AsyncGenerator(fn.apply(this, arguments));
|
return new AsyncGenerator(fn.apply(this, arguments));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function lol() {
|
||||||
|
return _lol.apply(this, arguments);
|
||||||
|
}
|
||||||
function _lol() {
|
function _lol() {
|
||||||
_lol = _wrapAsyncGenerator(regeneratorRuntime.mark(function _callee() {
|
_lol = _wrapAsyncGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -106,6 +109,3 @@ function _lol() {
|
|||||||
}));
|
}));
|
||||||
return _lol.apply(this, arguments);
|
return _lol.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function lol() {
|
|
||||||
return _lol.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -131,6 +131,9 @@ function _wrapAsyncGenerator(fn) {
|
|||||||
return new AsyncGenerator(fn.apply(this, arguments));
|
return new AsyncGenerator(fn.apply(this, arguments));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function lol() {
|
||||||
|
return _lol.apply(this, arguments);
|
||||||
|
}
|
||||||
function _lol() {
|
function _lol() {
|
||||||
_lol = _wrapAsyncGenerator(regeneratorRuntime.mark(function _callee() {
|
_lol = _wrapAsyncGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -149,8 +152,8 @@ function _lol() {
|
|||||||
}));
|
}));
|
||||||
return _lol.apply(this, arguments);
|
return _lol.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function lol() {
|
function main() {
|
||||||
return _lol.apply(this, arguments);
|
return _main.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _main() {
|
function _main() {
|
||||||
_main = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_main = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -227,7 +230,4 @@ function _main() {
|
|||||||
}));
|
}));
|
||||||
return _main.apply(this, arguments);
|
return _main.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function main() {
|
|
||||||
return _main.apply(this, arguments);
|
|
||||||
}
|
|
||||||
main();
|
main();
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function fn1() {
|
||||||
|
return _fn.apply(this, arguments);
|
||||||
|
}
|
||||||
function _fn() {
|
function _fn() {
|
||||||
_fn = _asyncToGenerator(function*() {
|
_fn = _asyncToGenerator(function*() {
|
||||||
for(const key in {
|
for(const key in {
|
||||||
@ -34,6 +37,3 @@ function _fn() {
|
|||||||
});
|
});
|
||||||
return _fn.apply(this, arguments);
|
return _fn.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function fn1() {
|
|
||||||
return _fn.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function fn1() {
|
||||||
|
return _fn.apply(this, arguments);
|
||||||
|
}
|
||||||
function _fn() {
|
function _fn() {
|
||||||
_fn = _asyncToGenerator(function*() {
|
_fn = _asyncToGenerator(function*() {
|
||||||
for(const key in {
|
for(const key in {
|
||||||
@ -34,6 +37,3 @@ function _fn() {
|
|||||||
});
|
});
|
||||||
return _fn.apply(this, arguments);
|
return _fn.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function fn1() {
|
|
||||||
return _fn.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function fn1() {
|
||||||
|
return _fn.apply(this, arguments);
|
||||||
|
}
|
||||||
function _fn() {
|
function _fn() {
|
||||||
_fn = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_fn = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var key;
|
var key;
|
||||||
@ -44,6 +47,3 @@ function _fn() {
|
|||||||
}));
|
}));
|
||||||
return _fn.apply(this, arguments);
|
return _fn.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function fn1() {
|
|
||||||
return _fn.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -4,6 +4,9 @@ export default function StaticPage(param) {
|
|||||||
var data = param.data;
|
var data = param.data;
|
||||||
return(/*#__PURE__*/ React.createElement("div", null, data.foo));
|
return(/*#__PURE__*/ React.createElement("div", null, data.foo));
|
||||||
};
|
};
|
||||||
|
export function getStaticProps() {
|
||||||
|
return _getStaticProps.apply(this, arguments);
|
||||||
|
}
|
||||||
function _getStaticProps() {
|
function _getStaticProps() {
|
||||||
_getStaticProps = swcHelpers.asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_getStaticProps = swcHelpers.asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -24,6 +27,3 @@ function _getStaticProps() {
|
|||||||
}));
|
}));
|
||||||
return _getStaticProps.apply(this, arguments);
|
return _getStaticProps.apply(this, arguments);
|
||||||
}
|
}
|
||||||
export function getStaticProps() {
|
|
||||||
return _getStaticProps.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"mappings": ";;AAAA,MAAM,SAAS,QAAQ,CAACA,UAAU,CAAC,KAAQ,EAAE,CAAC;QAATC,IAAI,GAAN,KAAQ,CAANA,IAAI;IACrC,MAAM,mCAAEC,CAAG,YAAED,IAAI,CAACE,GAAG;AACzB,CAAC;SAEqBC,eAAc;IAAdA,eAAc,uDAA7B,QAAQ,WAAwB,CAAC;;;;iDAC7B,CAAC;wBACJC,KAAK,EAAE,CAAC;4BACJJ,IAAI,EAAE,CAAC;gCACHE,GAAG,EAAE,CAAK;4BACd,CAAC;wBACL,CAAC;oBACL,CAAC;;;;;;IACL,CAAC;WARqBC,eAAc;;AAApC,MAAM,UAAgBA,cAAc;WAAdA,eAAc",
|
"mappings": ";;AAAA,MAAM,SAAS,QAAQ,CAACA,UAAU,CAAC,KAAQ,EAAE,CAAC;QAATC,IAAI,GAAN,KAAQ,CAANA,IAAI;IACrC,MAAM,mCAAEC,CAAG,YAAED,IAAI,CAACE,GAAG;AACzB,CAAC;AAED,MAAM,UAAgBC,cAAc;WAAdA,eAAc;;SAAdA,eAAc;IAAdA,eAAc,uDAA7B,QAAQ,WAAwB,CAAC;;;;iDAC7B,CAAC;wBACJC,KAAK,EAAE,CAAC;4BACJJ,IAAI,EAAE,CAAC;gCACHE,GAAG,EAAE,CAAK;4BACd,CAAC;wBACL,CAAC;oBACL,CAAC;;;;;;IACL,CAAC;WARqBC,eAAc",
|
||||||
"names": [
|
"names": [
|
||||||
"StaticPage",
|
"StaticPage",
|
||||||
"data",
|
"data",
|
||||||
|
@ -1 +1 @@
|
|||||||
import*as a from"@swc/helpers";import b from"regenerator-runtime";export default function a(b){var c=b.data;return React.createElement("div",null,c.foo)};function _getStaticProps(){return(_getStaticProps=a.asyncToGenerator(b.mark(function a(){return b.wrap(function(a){for(;;)switch(a.prev=a.next){case 0:return a.abrupt("return",{props:{data:{foo:"bar"}}});case 1:case"end":return a.stop()}},a)}))).apply(this,arguments)}export function getStaticProps(){return _getStaticProps.apply(this,arguments)}
|
import*as a from"@swc/helpers";import b from"regenerator-runtime";export default function a(b){var c=b.data;return React.createElement("div",null,c.foo)};export function getStaticProps(){return _getStaticProps.apply(this,arguments)}function _getStaticProps(){return(_getStaticProps=a.asyncToGenerator(b.mark(function a(){return b.wrap(function(a){for(;;)switch(a.prev=a.next){case 0:return a.abrupt("return",{props:{data:{foo:"bar"}}});case 1:case"end":return a.stop()}},a)}))).apply(this,arguments)}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"mappings": "kEAAA,MAAM,SAAS,QAAQ,CAACA,CAAU,CAAC,CAAQ,CAAE,CAAC,IAATC,CAAI,CAAN,CAAQ,CAANA,IAAI,CACrC,MAAM,qBAAEC,CAAG,UAAED,CAAI,CAACE,GAAG,CACzB,CAAC,UAEqBC,eAAc,UAAdA,eAAc,2BAA7B,QAAQ,IAAwB,CAAC,uFAC7B,CAAC,AACJC,KAAK,CAAE,CAAC,AACJJ,IAAI,CAAE,CAAC,AACHE,GAAG,CAAE,CAAK,IACd,CAAC,AACL,CAAC,AACL,CAAC,uCACL,CAAC,0BARD,MAAM,UAAgBC,cAAc,UAAdA,eAAc",
|
"mappings": "kEAAA,MAAM,SAAS,QAAQ,CAACA,CAAU,CAAC,CAAQ,CAAE,CAAC,IAATC,CAAI,CAAN,CAAQ,CAANA,IAAI,CACrC,MAAM,qBAAEC,CAAG,UAAED,CAAI,CAACE,GAAG,CACzB,CAAC,CAED,MAAM,UAAgBC,cAAc,UAAdA,eAAc,gCAAdA,eAAc,UAAdA,eAAc,2BAA7B,QAAQ,IAAwB,CAAC,uFAC7B,CAAC,AACJC,KAAK,CAAE,CAAC,AACJJ,IAAI,CAAE,CAAC,AACHE,GAAG,CAAE,CAAK,IACd,CAAC,AACL,CAAC,AACL,CAAC,uCACL,CAAC",
|
||||||
"names": [
|
"names": [
|
||||||
"StaticPage",
|
"StaticPage",
|
||||||
"data",
|
"data",
|
||||||
|
@ -27,30 +27,30 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(function*() {
|
_f0 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f14() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(function*() {
|
_f11 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(function*() {
|
_f3 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
let f4 = function() {
|
let f4 = function() {
|
||||||
var _ref = _asyncToGenerator(function*() {
|
var _ref = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
@ -132,14 +132,14 @@ class C {
|
|||||||
}
|
}
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
|
function f1() {
|
||||||
|
return _f1.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(function*() {
|
_f1 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f1() {
|
|
||||||
return _f1.apply(this, arguments);
|
|
||||||
}
|
|
||||||
M.f1 = f1;
|
M.f1 = f1;
|
||||||
})(M1 || (M1 = {
|
})(M1 || (M1 = {
|
||||||
}));
|
}));
|
||||||
|
@ -47,6 +47,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|||||||
if (staticProps) _defineProperties(Constructor, staticProps);
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
||||||
return Constructor;
|
return Constructor;
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -59,8 +62,8 @@ function _f0() {
|
|||||||
}));
|
}));
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f14() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -74,8 +77,8 @@ function _f11() {
|
|||||||
}));
|
}));
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -89,9 +92,6 @@ function _f3() {
|
|||||||
}));
|
}));
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
var f4 = function() {
|
var f4 = function() {
|
||||||
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -336,9 +336,9 @@ var C = /*#__PURE__*/ function() {
|
|||||||
}();
|
}();
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
var f1 = function f1() {
|
function f1() {
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
};
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
|
@ -27,30 +27,30 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(function*() {
|
_f0 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f15() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(function*() {
|
_f11 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f15() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(function*() {
|
_f3 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
let f4 = function() {
|
let f4 = function() {
|
||||||
var _ref = _asyncToGenerator(function*() {
|
var _ref = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
@ -132,17 +132,20 @@ class C {
|
|||||||
}
|
}
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
|
function f1() {
|
||||||
|
return _f1.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(function*() {
|
_f1 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f1() {
|
|
||||||
return _f1.apply(this, arguments);
|
|
||||||
}
|
|
||||||
M.f1 = f1;
|
M.f1 = f1;
|
||||||
})(M1 || (M1 = {
|
})(M1 || (M1 = {
|
||||||
}));
|
}));
|
||||||
|
function f14() {
|
||||||
|
return _f14.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f14() {
|
function _f14() {
|
||||||
_f14 = _asyncToGenerator(function*() {
|
_f14 = _asyncToGenerator(function*() {
|
||||||
block: {
|
block: {
|
||||||
@ -152,6 +155,3 @@ function _f14() {
|
|||||||
});
|
});
|
||||||
return _f14.apply(this, arguments);
|
return _f14.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
|
||||||
return _f14.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -47,6 +47,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|||||||
if (staticProps) _defineProperties(Constructor, staticProps);
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
||||||
return Constructor;
|
return Constructor;
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -59,8 +62,8 @@ function _f0() {
|
|||||||
}));
|
}));
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f15() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -74,8 +77,8 @@ function _f11() {
|
|||||||
}));
|
}));
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f15() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -89,9 +92,6 @@ function _f3() {
|
|||||||
}));
|
}));
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
var f4 = function() {
|
var f4 = function() {
|
||||||
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -336,9 +336,9 @@ var C = /*#__PURE__*/ function() {
|
|||||||
}();
|
}();
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
var f1 = function f1() {
|
function f1() {
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
};
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -354,6 +354,9 @@ var M1;
|
|||||||
M.f1 = f1;
|
M.f1 = f1;
|
||||||
})(M1 || (M1 = {
|
})(M1 || (M1 = {
|
||||||
}));
|
}));
|
||||||
|
function f14() {
|
||||||
|
return _f14.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f14() {
|
function _f14() {
|
||||||
_f14 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f14 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -371,6 +374,3 @@ function _f14() {
|
|||||||
}));
|
}));
|
||||||
return _f14.apply(this, arguments);
|
return _f14.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
|
||||||
return _f14.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
"use strict";
|
"use strict";
|
||||||
@ -34,6 +37,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -54,6 +57,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -55,6 +58,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -55,6 +58,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -50,6 +53,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -48,6 +51,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -36,6 +39,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var o;
|
var o;
|
||||||
@ -49,6 +52,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -45,6 +48,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -49,6 +52,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -45,6 +48,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -48,6 +51,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
class D extends yield p {
|
class D extends yield p {
|
||||||
@ -34,6 +37,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -99,6 +99,9 @@ function _createSuper(Derived) {
|
|||||||
return _possibleConstructorReturn(this, result);
|
return _possibleConstructorReturn(this, result);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var D;
|
var D;
|
||||||
@ -128,6 +131,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,12 +27,12 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = _asyncToGenerator(function*() {
|
_f = _asyncToGenerator(function*() {
|
||||||
yield a;
|
yield a;
|
||||||
});
|
});
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -43,6 +46,3 @@ function _f() {
|
|||||||
}));
|
}));
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function bar() {
|
||||||
|
return _bar.apply(this, arguments);
|
||||||
|
}
|
||||||
function _bar() {
|
function _bar() {
|
||||||
_bar = // @target: es2017
|
_bar = // @target: es2017
|
||||||
_asyncToGenerator(function*() {
|
_asyncToGenerator(function*() {
|
||||||
@ -34,8 +37,8 @@ function _bar() {
|
|||||||
});
|
});
|
||||||
return _bar.apply(this, arguments);
|
return _bar.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar() {
|
function bar1() {
|
||||||
return _bar.apply(this, arguments);
|
return _bar1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _bar1() {
|
function _bar1() {
|
||||||
_bar1 = _asyncToGenerator(function*() {
|
_bar1 = _asyncToGenerator(function*() {
|
||||||
@ -43,8 +46,8 @@ function _bar1() {
|
|||||||
});
|
});
|
||||||
return _bar1.apply(this, arguments);
|
return _bar1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar1() {
|
function bar3() {
|
||||||
return _bar1.apply(this, arguments);
|
return _bar3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _bar3() {
|
function _bar3() {
|
||||||
_bar3 = _asyncToGenerator(function*() {
|
_bar3 = _asyncToGenerator(function*() {
|
||||||
@ -52,8 +55,8 @@ function _bar3() {
|
|||||||
});
|
});
|
||||||
return _bar3.apply(this, arguments);
|
return _bar3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar3() {
|
function bar4() {
|
||||||
return _bar3.apply(this, arguments);
|
return _bar4.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _bar4() {
|
function _bar4() {
|
||||||
_bar4 = _asyncToGenerator(function*() {
|
_bar4 = _asyncToGenerator(function*() {
|
||||||
@ -61,6 +64,3 @@ function _bar4() {
|
|||||||
});
|
});
|
||||||
return _bar4.apply(this, arguments);
|
return _bar4.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar4() {
|
|
||||||
return _bar4.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function bar() {
|
||||||
|
return _bar.apply(this, arguments);
|
||||||
|
}
|
||||||
function _bar() {
|
function _bar() {
|
||||||
_bar = // @target: es2017
|
_bar = // @target: es2017
|
||||||
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -46,8 +49,8 @@ function _bar() {
|
|||||||
}));
|
}));
|
||||||
return _bar.apply(this, arguments);
|
return _bar.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar() {
|
function bar1() {
|
||||||
return _bar.apply(this, arguments);
|
return _bar1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _bar1() {
|
function _bar1() {
|
||||||
_bar1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_bar1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -66,8 +69,8 @@ function _bar1() {
|
|||||||
}));
|
}));
|
||||||
return _bar1.apply(this, arguments);
|
return _bar1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar1() {
|
function bar3() {
|
||||||
return _bar1.apply(this, arguments);
|
return _bar3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _bar3() {
|
function _bar3() {
|
||||||
_bar3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_bar3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -86,8 +89,8 @@ function _bar3() {
|
|||||||
}));
|
}));
|
||||||
return _bar3.apply(this, arguments);
|
return _bar3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar3() {
|
function bar4() {
|
||||||
return _bar3.apply(this, arguments);
|
return _bar4.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _bar4() {
|
function _bar4() {
|
||||||
_bar4 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_bar4 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -106,6 +109,3 @@ function _bar4() {
|
|||||||
}));
|
}));
|
||||||
return _bar4.apply(this, arguments);
|
return _bar4.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function bar4() {
|
|
||||||
return _bar4.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,12 +28,12 @@ function _asyncToGenerator(fn) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
function _await() {
|
function _await() {
|
||||||
_await = // @target: es2017
|
return _await1.apply(this, arguments);
|
||||||
|
}
|
||||||
|
function _await1() {
|
||||||
|
_await1 = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
_asyncToGenerator(function*() {
|
_asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _await.apply(this, arguments);
|
return _await1.apply(this, arguments);
|
||||||
}
|
|
||||||
function _await1() {
|
|
||||||
return _await.apply(this, arguments);
|
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,10 @@ function _asyncToGenerator(fn) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
function _await() {
|
function _await() {
|
||||||
_await = // @target: es2017
|
return _await1.apply(this, arguments);
|
||||||
|
}
|
||||||
|
function _await1() {
|
||||||
|
_await1 = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -40,8 +43,5 @@ function _await() {
|
|||||||
}
|
}
|
||||||
}, _callee);
|
}, _callee);
|
||||||
}));
|
}));
|
||||||
return _await.apply(this, arguments);
|
return _await1.apply(this, arguments);
|
||||||
}
|
|
||||||
function _await1() {
|
|
||||||
return _await.apply(this, arguments);
|
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = // @target: es2017
|
_foo = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
@ -36,6 +39,3 @@ function _foo() {
|
|||||||
});
|
});
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = // @target: es2017
|
_foo = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
@ -45,6 +48,3 @@ function _foo() {
|
|||||||
}));
|
}));
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = // @target: es2017
|
_foo = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
@ -35,6 +38,3 @@ function _foo() {
|
|||||||
});
|
});
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = // @target: es2017
|
_foo = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
@ -44,6 +47,3 @@ function _foo() {
|
|||||||
}));
|
}));
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = // @target: es2017
|
_foo = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
@ -34,6 +37,3 @@ function _foo() {
|
|||||||
});
|
});
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function foo() {
|
||||||
|
return _foo.apply(this, arguments);
|
||||||
|
}
|
||||||
function _foo() {
|
function _foo() {
|
||||||
_foo = // @target: es2017
|
_foo = // @target: es2017
|
||||||
// @noEmitHelpers: true
|
// @noEmitHelpers: true
|
||||||
@ -42,6 +45,3 @@ function _foo() {
|
|||||||
}));
|
}));
|
||||||
return _foo.apply(this, arguments);
|
return _foo.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function foo() {
|
|
||||||
return _foo.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,11 +27,11 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = _asyncToGenerator(function*() {
|
_f = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -40,6 +43,3 @@ function _f() {
|
|||||||
}));
|
}));
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,30 +27,30 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(function*() {
|
_f0 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f14() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(function*() {
|
_f11 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(function*() {
|
_f3 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
let f4 = function() {
|
let f4 = function() {
|
||||||
var _ref = _asyncToGenerator(function*() {
|
var _ref = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
@ -132,14 +132,14 @@ class C {
|
|||||||
}
|
}
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
|
function f1() {
|
||||||
|
return _f1.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(function*() {
|
_f1 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f1() {
|
|
||||||
return _f1.apply(this, arguments);
|
|
||||||
}
|
|
||||||
M.f1 = f1;
|
M.f1 = f1;
|
||||||
})(M1 || (M1 = {
|
})(M1 || (M1 = {
|
||||||
}));
|
}));
|
||||||
|
@ -47,6 +47,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|||||||
if (staticProps) _defineProperties(Constructor, staticProps);
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
||||||
return Constructor;
|
return Constructor;
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -59,8 +62,8 @@ function _f0() {
|
|||||||
}));
|
}));
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f14() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -74,8 +77,8 @@ function _f11() {
|
|||||||
}));
|
}));
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -89,9 +92,6 @@ function _f3() {
|
|||||||
}));
|
}));
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
var f4 = function() {
|
var f4 = function() {
|
||||||
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -336,9 +336,9 @@ var C = /*#__PURE__*/ function() {
|
|||||||
}();
|
}();
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
var f1 = function f1() {
|
function f1() {
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
};
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
|
@ -27,30 +27,30 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(function*() {
|
_f0 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f15() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(function*() {
|
_f11 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f15() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(function*() {
|
_f3 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
let f4 = function() {
|
let f4 = function() {
|
||||||
var _ref = _asyncToGenerator(function*() {
|
var _ref = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
@ -132,17 +132,20 @@ class C {
|
|||||||
}
|
}
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
|
function f1() {
|
||||||
|
return _f1.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(function*() {
|
_f1 = _asyncToGenerator(function*() {
|
||||||
});
|
});
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f1() {
|
|
||||||
return _f1.apply(this, arguments);
|
|
||||||
}
|
|
||||||
M.f1 = f1;
|
M.f1 = f1;
|
||||||
})(M1 || (M1 = {
|
})(M1 || (M1 = {
|
||||||
}));
|
}));
|
||||||
|
function f14() {
|
||||||
|
return _f14.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f14() {
|
function _f14() {
|
||||||
_f14 = _asyncToGenerator(function*() {
|
_f14 = _asyncToGenerator(function*() {
|
||||||
block: {
|
block: {
|
||||||
@ -152,6 +155,3 @@ function _f14() {
|
|||||||
});
|
});
|
||||||
return _f14.apply(this, arguments);
|
return _f14.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
|
||||||
return _f14.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -47,6 +47,9 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|||||||
if (staticProps) _defineProperties(Constructor, staticProps);
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
||||||
return Constructor;
|
return Constructor;
|
||||||
}
|
}
|
||||||
|
function f0() {
|
||||||
|
return _f0.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f0() {
|
function _f0() {
|
||||||
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f0 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -59,8 +62,8 @@ function _f0() {
|
|||||||
}));
|
}));
|
||||||
return _f0.apply(this, arguments);
|
return _f0.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f0() {
|
function f15() {
|
||||||
return _f0.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f11() {
|
function _f11() {
|
||||||
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f11 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -74,8 +77,8 @@ function _f11() {
|
|||||||
}));
|
}));
|
||||||
return _f11.apply(this, arguments);
|
return _f11.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f15() {
|
function f3() {
|
||||||
return _f11.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function _f3() {
|
function _f3() {
|
||||||
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f3 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
@ -89,9 +92,6 @@ function _f3() {
|
|||||||
}));
|
}));
|
||||||
return _f3.apply(this, arguments);
|
return _f3.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f3() {
|
|
||||||
return _f3.apply(this, arguments);
|
|
||||||
}
|
|
||||||
var f4 = function() {
|
var f4 = function() {
|
||||||
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
var _ref = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -336,9 +336,9 @@ var C = /*#__PURE__*/ function() {
|
|||||||
}();
|
}();
|
||||||
var M1;
|
var M1;
|
||||||
(function(M) {
|
(function(M) {
|
||||||
var f1 = function f1() {
|
function f1() {
|
||||||
return _f1.apply(this, arguments);
|
return _f1.apply(this, arguments);
|
||||||
};
|
}
|
||||||
function _f1() {
|
function _f1() {
|
||||||
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f1 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -354,6 +354,9 @@ var M1;
|
|||||||
M.f1 = f1;
|
M.f1 = f1;
|
||||||
})(M1 || (M1 = {
|
})(M1 || (M1 = {
|
||||||
}));
|
}));
|
||||||
|
function f14() {
|
||||||
|
return _f14.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f14() {
|
function _f14() {
|
||||||
_f14 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_f14 = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
||||||
@ -371,6 +374,3 @@ function _f14() {
|
|||||||
}));
|
}));
|
||||||
return _f14.apply(this, arguments);
|
return _f14.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f14() {
|
|
||||||
return _f14.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = // @target: es5
|
_f = // @target: es5
|
||||||
// @lib: es5,es2015.promise
|
// @lib: es5,es2015.promise
|
||||||
@ -35,9 +38,6 @@ function _f() {
|
|||||||
});
|
});
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
// @filename: b.ts
|
// @filename: b.ts
|
||||||
function g() {
|
function g() {
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = // @target: es5
|
_f = // @target: es5
|
||||||
// @lib: es5,es2015.promise
|
// @lib: es5,es2015.promise
|
||||||
@ -43,9 +46,6 @@ function _f() {
|
|||||||
}));
|
}));
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
// @filename: b.ts
|
// @filename: b.ts
|
||||||
function g() {
|
function g() {
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
"use strict";
|
"use strict";
|
||||||
@ -34,6 +37,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -54,6 +57,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -55,6 +58,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -55,6 +58,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -50,6 +53,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -48,6 +51,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -36,6 +39,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var o;
|
var o;
|
||||||
@ -49,6 +52,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -45,6 +48,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -49,6 +52,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -45,6 +48,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -52,6 +55,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
before();
|
before();
|
||||||
@ -35,6 +38,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -28,6 +28,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var b;
|
var b;
|
||||||
@ -48,6 +51,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(function*() {
|
_func = _asyncToGenerator(function*() {
|
||||||
class D extends yield p {
|
class D extends yield p {
|
||||||
@ -34,6 +37,3 @@ function _func() {
|
|||||||
});
|
});
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -99,6 +99,9 @@ function _createSuper(Derived) {
|
|||||||
return _possibleConstructorReturn(this, result);
|
return _possibleConstructorReturn(this, result);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function func() {
|
||||||
|
return _func.apply(this, arguments);
|
||||||
|
}
|
||||||
function _func() {
|
function _func() {
|
||||||
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
_func = _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
|
||||||
var D;
|
var D;
|
||||||
@ -128,6 +131,3 @@ function _func() {
|
|||||||
}));
|
}));
|
||||||
return _func.apply(this, arguments);
|
return _func.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function func() {
|
|
||||||
return _func.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
@ -27,6 +27,9 @@ function _asyncToGenerator(fn) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
function f() {
|
||||||
|
return _f.apply(this, arguments);
|
||||||
|
}
|
||||||
function _f() {
|
function _f() {
|
||||||
_f = _asyncToGenerator(function*() {
|
_f = _asyncToGenerator(function*() {
|
||||||
let await_a = yield a;
|
let await_a = yield a;
|
||||||
@ -37,6 +40,3 @@ function _f() {
|
|||||||
});
|
});
|
||||||
return _f.apply(this, arguments);
|
return _f.apply(this, arguments);
|
||||||
}
|
}
|
||||||
function f() {
|
|
||||||
return _f.apply(this, arguments);
|
|
||||||
}
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user