Skip to content

Commit

Permalink
Update test refs for swc-project#1477
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Apr 1, 2021
1 parent c8d0c48 commit b372b38
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions tests/fixture/issue-1477/case1/output/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
try {
var info = gen[key](arg);
var value = info.value;
} catch (error) {
reject(error);
return;
}
if (info.done) {
resolve(value);
} else {
Promise.resolve(value).then(_next, _throw);
}
}
function _asyncToGenerator(fn) {
return function() {
var self = this, args = arguments;
return new Promise(function(resolve, reject) {
var gen = fn.apply(self, args);
function _next(value) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
}
function _throw(err) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
}
_next(undefined);
});
};
}
var regeneratorRuntime = require("regenerator-runtime");
var _marked = regeneratorRuntime.mark(_f);
function _f() {
_f = _asyncToGenerator(regeneratorRuntime.mark(function _callee(a, b) {
var a_;
return regeneratorRuntime.wrap(function _callee$(_ctx) {
var ref;
while(1)switch(_ctx.prev = _ctx.next){
case 0:
var ref1, ref2;
ref1 = JSON.parse(b), ref2 = ref1[0], ref = 1, a_ = ref, ref1;
case 1:
case "end":
return _ctx.stop();
}
}, _callee);
}));
return _f.apply(this, arguments);
}
function f(a, b) {
return _f.apply(this, arguments);
}

0 comments on commit b372b38

Please sign in to comment.