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
|
=== tests/cases/conformance/emitter/es2017/forAwait/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/emitter/es2017/forAwait/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/emitter/es2017/forAwait/file3.ts ===
async function* f3() {
>f3 : () => AsyncIterableIterator<any>
let y: any;
>y : any
for await (const x of y) {
>x : any
>y : any
}
}
=== tests/cases/conformance/emitter/es2017/forAwait/file4.ts ===
async function* f4() {
>f4 : () => AsyncIterableIterator<any>
let x: any, y: any;
>x : any
>y : any
for await (x of y) {
>x : any
>y : any
}
}
=== tests/cases/conformance/emitter/es2017/forAwait/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/emitter/es2017/forAwait/file6.ts ===
// https://github.com/Microsoft/TypeScript/issues/21363
async function* f6() {
>f6 : () => AsyncIterableIterator<any>
let y: any;
>y : any
outer: for await (const x of y) {
>outer : any
>x : any
>y : any
continue outer;
>outer : any
}
}
|