@return \Generator */
()
| 1765 | |
| 1766 | /** @return \Generator<int, string, Pencil, void> */ |
| 1767 | public function tsendInsideNestedBlocks(): \Generator |
| 1768 | { |
| 1769 | while (true) { |
| 1770 | if (true) { |
| 1771 | $pencil = yield 'waiting'; |
| 1772 | $pencil->sketch(); // resolves inside nested blocks |
| 1773 | } |
| 1774 | } |
| 1775 | } |
| 1776 | } |
| 1777 | |
| 1778 |