summaryrefslogtreecommitdiff
path: root/cli/tests/top_level_for_await.js
blob: fa3b496a8cb732d98477878cd1d88861a1682d8b (plain)
1
2
3
4
5
6
7
8
9
10
async function* asyncGenerator() {
  let i = 0;
  while (i < 3) {
    yield i++;
  }
}

for await (const num of asyncGenerator()) {
  console.log(num);
};