(fiber: MicroFiberImpl)
| 596 | })) |
| 597 | |
| 598 | const fiberInterruptChildren = (fiber: MicroFiberImpl) => { |
| 599 | if (fiber._children === undefined || fiber._children.size === 0) { |
| 600 | return undefined |
| 601 | } |
| 602 | return fiberInterruptAll(fiber._children) |
| 603 | } |
| 604 | |
| 605 | /** |
| 606 | * @since 3.11.0 |
nothing calls this directly
no test coverage detected