prettier/tests/async/async-iteration.js

11 lines
99 B
JavaScript

async function * a() {
yield* b();
}
class X {
async * b() {
yield* a();
}
}