(fiber: FiberImpl)
| 756 | } |
| 757 | |
| 758 | const fiberInterruptChildren = (fiber: FiberImpl) => { |
| 759 | if (fiber._children === undefined || fiber._children.size === 0) { |
| 760 | return undefined |
| 761 | } |
| 762 | return fiberInterruptAll(fiber._children) |
| 763 | } |
| 764 | |
| 765 | /** @internal */ |
| 766 | export const fiberAwait = <A, E>( |
nothing calls this directly
no test coverage detected