(fiber)
| 11861 | } |
| 11862 | |
| 11863 | function isHostParent(fiber) { |
| 11864 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 11865 | } |
| 11866 | |
| 11867 | function getHostSibling(fiber) { |
| 11868 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected