2021-06-09 16:36:09 +02:00

9 lines
94 B
JavaScript

function* f() {
(yield);
[yield];
{ yield };
yield;
true ? yield : 1;
yield, 1;
}