(fiber)
| 10843 | } |
| 10844 | |
| 10845 | function isHostParent(fiber) { |
| 10846 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 10847 | } |
| 10848 | |
| 10849 | function getHostSibling(fiber) { |
| 10850 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected