1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
//// [es5-asyncFunctionIfStatements.ts]
declare var x, y, z, a, b, c;
async function ifStatement1() {
if (await x) { y; } else { z; }
}
async function ifStatement2() {
if (x) { await y; } else { z; }
}
async function ifStatement3() {
if (x) { y; } else { await z; }
}
//// [es5-asyncFunctionIfStatements.js]
function ifStatement1() {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, x];
case 1:
if (_a.sent()) {
y;
}
else {
z;
}
return [2 /*return*/];
}
});
});
}
function ifStatement2() {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
if (!x) return [3 /*break*/, 2];
return [4 /*yield*/, y];
case 1:
_a.sent();
return [3 /*break*/, 3];
case 2:
z;
_a.label = 3;
case 3: return [2 /*return*/];
}
});
});
}
function ifStatement3() {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
if (!x) return [3 /*break*/, 1];
y;
return [3 /*break*/, 3];
case 1: return [4 /*yield*/, z];
case 2:
_a.sent();
_a.label = 3;
case 3: return [2 /*return*/];
}
});
});
}
|