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
|
=== tests/cases/conformance/emitter/es5/asyncGenerators/F1.ts ===
const f1 = async function * () {
>f1 : () => AsyncIterableIterator<any>
>async function * () {} : () => AsyncIterableIterator<any>
}
=== tests/cases/conformance/emitter/es5/asyncGenerators/F2.ts ===
const f2 = async function * () {
>f2 : () => AsyncIterableIterator<any>
>async function * () { const x = yield;} : () => AsyncIterableIterator<any>
const x = yield;
>x : any
>yield : any
}
=== tests/cases/conformance/emitter/es5/asyncGenerators/F3.ts ===
const f3 = async function * () {
>f3 : () => AsyncIterableIterator<number>
>async function * () { const x = yield 1;} : () => AsyncIterableIterator<number>
const x = yield 1;
>x : any
>yield 1 : any
>1 : 1
}
=== tests/cases/conformance/emitter/es5/asyncGenerators/F4.ts ===
const f4 = async function * () {
>f4 : () => AsyncIterableIterator<number>
>async function * () { const x = yield* [1];} : () => AsyncIterableIterator<number>
const x = yield* [1];
>x : any
>yield* [1] : any
>[1] : number[]
>1 : 1
}
=== tests/cases/conformance/emitter/es5/asyncGenerators/F5.ts ===
const f5 = async function * () {
>f5 : () => AsyncIterableIterator<number>
>async function * () { const x = yield* (async function*() { yield 1; })();} : () => AsyncIterableIterator<number>
const x = yield* (async function*() { yield 1; })();
>x : any
>yield* (async function*() { yield 1; })() : any
>(async function*() { yield 1; })() : AsyncIterableIterator<number>
>(async function*() { yield 1; }) : () => AsyncIterableIterator<number>
>async function*() { yield 1; } : () => AsyncIterableIterator<number>
>yield 1 : any
>1 : 1
}
=== tests/cases/conformance/emitter/es5/asyncGenerators/F6.ts ===
const f6 = async function * () {
>f6 : () => AsyncIterableIterator<any>
>async function * () { const x = await 1;} : () => AsyncIterableIterator<any>
const x = await 1;
>x : 1
>await 1 : 1
>1 : 1
}
=== tests/cases/conformance/emitter/es5/asyncGenerators/F7.ts ===
const f7 = async function * () {
>f7 : () => AsyncIterableIterator<number>
>async function * () { return 1;} : () => AsyncIterableIterator<number>
return 1;
>1 : 1
}
|