arrow.js 86 B

123456
  1. function *f() {
  2. (yield a => a);
  3. (yield async a => a);
  4. (yield async (a) => a);
  5. }