2018-01-09 15:36:42 +01:00

9 lines
81 B
JavaScript

class C {
async *g() {
this;
await 1;
yield 2;
return 3;
}
}