TypeScript/tests/baselines/reference/topLevelAwaitNonModule(module=es2022).js
Kagami Sascha Rosylight 2161e1852f
Add module: es2022 (#44656)
Closes #44653
2021-09-29 17:44:57 -07:00

17 lines
249 B
TypeScript

//// [topLevelAwaitNonModule.ts]
await x;
const arr = [Promise.resolve()];
for await (const item of arr) {
item;
}
//// [topLevelAwaitNonModule.js]
await x;
const arr = [Promise.resolve()];
for await (const item of arr) {
item;
}