You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

multiple.expected.js 135B

123456789
  1. function* foo() {
  2. return yield baz();
  3. }
  4. function* bar() {
  5. return yield foo(baz);
  6. }
  7. function* baz() {
  8. return yield bar();
  9. }