(fiber)
| 11645 | } |
| 11646 | |
| 11647 | function isHostParent(fiber) { |
| 11648 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 11649 | } |
| 11650 | |
| 11651 | function getHostSibling(fiber) { |
| 11652 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected