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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
//// [tests/cases/conformance/statements/for-await-ofStatements/emitter.forAwait.ts] ////
//// [file1.ts]
async function f1() {
let y: any;
for await (const x of y) {
}
}
//// [file2.ts]
async function f2() {
let x: any, y: any;
for await (x of y) {
}
}
//// [file3.ts]
async function* f3() {
let y: any;
for await (const x of y) {
}
}
//// [file4.ts]
async function* f4() {
let x: any, y: any;
for await (x of y) {
}
}
//// [file5.ts]
// https://github.com/Microsoft/TypeScript/issues/21363
async function f5() {
let y: any;
outer: for await (const x of y) {
continue outer;
}
}
//// [file6.ts]
// https://github.com/Microsoft/TypeScript/issues/21363
async function* f6() {
let y: any;
outer: for await (const x of y) {
continue outer;
}
}
//// [file7.ts]
// https://github.com/microsoft/TypeScript/issues/36166
async function* f7() {
let y: any;
for (;;) {
for await (const x of y) {
}
}
}
//// [file1.js]
async function f1() {
let y;
for await (const x of y) {
}
}
//// [file2.js]
async function f2() {
let x, y;
for await (x of y) {
}
}
//// [file3.js]
async function* f3() {
let y;
for await (const x of y) {
}
}
//// [file4.js]
async function* f4() {
let x, y;
for await (x of y) {
}
}
//// [file5.js]
// https://github.com/Microsoft/TypeScript/issues/21363
async function f5() {
let y;
outer: for await (const x of y) {
continue outer;
}
}
//// [file6.js]
// https://github.com/Microsoft/TypeScript/issues/21363
async function* f6() {
let y;
outer: for await (const x of y) {
continue outer;
}
}
//// [file7.js]
// https://github.com/microsoft/TypeScript/issues/36166
async function* f7() {
let y;
for (;;) {
for await (const x of y) {
}
}
}
|