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
|
=== tests/cases/conformance/statements/for-await-ofStatements/file1.ts ===
async function f1() {
>f1 : () => Promise<void>
let y: any;
>y : any
for await (const x of y) {
>x : any
>y : any
}
}
=== tests/cases/conformance/statements/for-await-ofStatements/file2.ts ===
async function f2() {
>f2 : () => Promise<void>
let x: any, y: any;
>x : any
>y : any
for await (x of y) {
>x : any
>y : any
}
}
=== tests/cases/conformance/statements/for-await-ofStatements/file3.ts ===
async function* f3() {
>f3 : () => AsyncGenerator<never, void, unknown>
let y: any;
>y : any
for await (const x of y) {
>x : any
>y : any
}
}
=== tests/cases/conformance/statements/for-await-ofStatements/file4.ts ===
async function* f4() {
>f4 : () => AsyncGenerator<never, void, unknown>
let x: any, y: any;
>x : any
>y : any
for await (x of y) {
>x : any
>y : any
}
}
=== tests/cases/conformance/statements/for-await-ofStatements/file5.ts ===
// https://github.com/Microsoft/TypeScript/issues/21363
async function f5() {
>f5 : () => Promise<void>
let y: any;
>y : any
outer: for await (const x of y) {
>outer : any
>x : any
>y : any
continue outer;
>outer : any
}
}
=== tests/cases/conformance/statements/for-await-ofStatements/file6.ts ===
// https://github.com/Microsoft/TypeScript/issues/21363
async function* f6() {
>f6 : () => AsyncGenerator<never, void, unknown>
let y: any;
>y : any
outer: for await (const x of y) {
>outer : any
>x : any
>y : any
continue outer;
>outer : any
}
}
=== tests/cases/conformance/statements/for-await-ofStatements/file7.ts ===
// https://github.com/microsoft/TypeScript/issues/36166
async function* f7() {
>f7 : () => AsyncGenerator<never, void, unknown>
let y: any;
>y : any
for (;;) {
for await (const x of y) {
>x : any
>y : any
}
}
}
|