()
| 112 | let source1Return = false; |
| 113 | let source2Return = false; |
| 114 | async function* source1() { |
| 115 | try { |
| 116 | while (true) yield [new TextEncoder().encode('a')]; |
| 117 | } finally { |
| 118 | source1Return = true; |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | async function* source2() { |
| 123 | try { |
no test coverage detected