(value: MicroExit<any, any> | (() => void))
| 582 | // cancel the yielded operation, or for the yielded exit value |
| 583 | _yielded: MicroExit<any, any> | (() => void) | undefined = undefined |
| 584 | yieldWith(value: MicroExit<any, any> | (() => void)): Yield { |
| 585 | this._yielded = value |
| 586 | return Yield |
| 587 | } |
| 588 | |
| 589 | children(): Set<MicroFiber<any, any>> { |
| 590 | return this._children ??= new Set() |