File: emitter.asyncGenerators.functionExpressions.es2018.types

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (68 lines) | stat: -rw-r--r-- 2,414 bytes parent folder | download | duplicates (4)
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/es2018/asyncGenerators/F1.ts ===
const f1 = async function * () {
>f1 : () => AsyncGenerator<never, void, unknown>
>async function * () {} : () => AsyncGenerator<never, void, unknown>
}
=== tests/cases/conformance/emitter/es2018/asyncGenerators/F2.ts ===
const f2 = async function * () {
>f2 : () => AsyncGenerator<any, void, unknown>
>async function * () {    const x = yield;} : () => AsyncGenerator<any, void, unknown>

    const x = yield;
>x : any
>yield : any
}
=== tests/cases/conformance/emitter/es2018/asyncGenerators/F3.ts ===
const f3 = async function * () {
>f3 : () => AsyncGenerator<number, void, unknown>
>async function * () {    const x = yield 1;} : () => AsyncGenerator<number, void, unknown>

    const x = yield 1;
>x : any
>yield 1 : any
>1 : 1
}
=== tests/cases/conformance/emitter/es2018/asyncGenerators/F4.ts ===
const f4 = async function * () {
>f4 : () => AsyncGenerator<number, void, undefined>
>async function * () {    const x = yield* [1];} : () => AsyncGenerator<number, void, undefined>

    const x = yield* [1];
>x : any
>yield* [1] : any
>[1] : number[]
>1 : 1
}
=== tests/cases/conformance/emitter/es2018/asyncGenerators/F5.ts ===
const f5 = async function * () {
>f5 : () => AsyncGenerator<number, void, unknown>
>async function * () {    const x = yield* (async function*() { yield 1; })();} : () => AsyncGenerator<number, void, unknown>

    const x = yield* (async function*() { yield 1; })();
>x : void
>yield* (async function*() { yield 1; })() : void
>(async function*() { yield 1; })() : AsyncGenerator<number, void, unknown>
>(async function*() { yield 1; }) : () => AsyncGenerator<number, void, unknown>
>async function*() { yield 1; } : () => AsyncGenerator<number, void, unknown>
>yield 1 : any
>1 : 1
}
=== tests/cases/conformance/emitter/es2018/asyncGenerators/F6.ts ===
const f6 = async function * () {
>f6 : () => AsyncGenerator<never, void, unknown>
>async function * () {    const x = await 1;} : () => AsyncGenerator<never, void, unknown>

    const x = await 1;
>x : 1
>await 1 : 1
>1 : 1
}
=== tests/cases/conformance/emitter/es2018/asyncGenerators/F7.ts ===
const f7 = async function * () {
>f7 : () => AsyncGenerator<never, number, unknown>
>async function * () {    return 1;} : () => AsyncGenerator<never, number, unknown>

    return 1;
>1 : 1
}