(fiber)
| 16807 | } |
| 16808 | |
| 16809 | function popToNextHostParent(fiber) { |
| 16810 | var parent = fiber.return; |
| 16811 | |
| 16812 | while (parent !== null && parent.tag !== HostComponent && parent.tag !== HostRoot && parent.tag !== SuspenseComponent) { |
| 16813 | parent = parent.return; |
| 16814 | } |
| 16815 | |
| 16816 | hydrationParentFiber = parent; |
| 16817 | } |
| 16818 | |
| 16819 | function popHydrationState(fiber) { |
| 16820 |