Files
codeql/javascript/extractor/tests/esnext/input/for-await.js
2022-08-11 09:53:32 +02:00

9 lines
137 B
JavaScript

async function foo() {
for await (const call of calls) {
call();
}
}
for await (const call of calls) {
call();
}