(fiber)
| 11703 | } |
| 11704 | |
| 11705 | function isHostParent(fiber) { |
| 11706 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 11707 | } |
| 11708 | |
| 11709 | function getHostSibling(fiber) { |
| 11710 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected