(fiber)
| 11748 | } |
| 11749 | |
| 11750 | function isHostParent(fiber) { |
| 11751 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 11752 | } |
| 11753 | |
| 11754 | function getHostSibling(fiber) { |
| 11755 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected