File: topLevelAwait.1%28module%3Dsystem%2Ctarget%3Des2017%29.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 (195 lines) | stat: -rw-r--r-- 3,223 bytes parent folder | download | duplicates (12)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
=== tests/cases/conformance/externalModules/index.ts ===
export const x = 1;
>x : 1
>1 : 1

await x;
>await x : 1
>x : 1

// reparse element access as await
await [x];
>await [x] : number[]
>[x] : number[]
>x : 1

await [x, x];
>await [x, x] : number[]
>[x, x] : number[]
>x : 1
>x : 1

// reparse call as await
declare function f(): number;
>f : () => number

await (x);
>await (x) : 1
>(x) : 1
>x : 1

await (f(), x);
>await (f(), x) : 1
>(f(), x) : 1
>f(), x : 1
>f() : number
>f : () => number
>x : 1

await <number>(x);
>await <number>(x) : number
><number>(x) : number
>(x) : 1
>x : 1

await <number>(f(), x);
>await <number>(f(), x) : number
><number>(f(), x) : number
>(f(), x) : 1
>f(), x : 1
>f() : number
>f : () => number
>x : 1

// reparse tagged template as await
await ``;
>await `` : ""
>`` : ""

await <string> ``;
>await <string> `` : string
><string> `` : string
>`` : ""

// member names should be ok
class C1 {
>C1 : C1

    await() {}
>await : () => void
}
class C2 {
>C2 : C2

    get await() { return 1; }
>await : number
>1 : 1

    set await(value) { }
>await : number
>value : number
}
class C3 {
>C3 : C3

    await = 1;
>await : number
>1 : 1
}
({
>({    await() {}}) : { await(): void; }
>{    await() {}} : { await(): void; }

    await() {}
>await : () => void

});
({
>({    get await() { return 1 },    set await(value) { }}) : { await: number; }
>{    get await() { return 1 },    set await(value) { }} : { await: number; }

    get await() { return 1 },
>await : number
>1 : 1

    set await(value) { }
>await : number
>value : number

});
({
>({    await: 1}) : { await: number; }
>{    await: 1} : { await: number; }

    await: 1
>await : number
>1 : 1

});

// property access name should be ok
C1.prototype.await;
>C1.prototype.await : () => void
>C1.prototype : C1
>C1 : typeof C1
>prototype : C1
>await : () => void

// await in decorators
declare const dec: any;
>dec : any

@(await dec)
>(await dec) : any
>await dec : any
>dec : any

class C {
>C : C
}

// await allowed in aliased import
import { await as _await } from "./other";
>await : 1
>_await : 1

// newlines
// await in throw
throw await
>await    1 : 1

    1;
>1 : 1

// await in var
let y = await
>y : number
>await    1 : 1

    1;
>1 : 1

// await in expression statement;
await
>await    1 : 1

    1;
>1 : 1

=== tests/cases/conformance/externalModules/other.ts ===
const _await = 1;
>_await : 1
>1 : 1

// await allowed in aliased export
export { _await as await };
>_await : 1
>await : 1

// for-await-of
const arr = [Promise.resolve()];
>arr : Promise<void>[]
>[Promise.resolve()] : Promise<void>[]
>Promise.resolve() : Promise<void>
>Promise.resolve : { (): Promise<void>; <T>(value: T): Promise<Awaited<T>>; <T>(value: T | PromiseLike<T>): Promise<Awaited<T>>; }
>Promise : PromiseConstructor
>resolve : { (): Promise<void>; <T>(value: T): Promise<Awaited<T>>; <T>(value: T | PromiseLike<T>): Promise<Awaited<T>>; }

for await (const item of arr) {
>item : void
>arr : Promise<void>[]

  item;
>item : void
}