(fiber)
| 11610 | } |
| 11611 | |
| 11612 | function isHostParent(fiber) { |
| 11613 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 11614 | } |
| 11615 | |
| 11616 | function getHostSibling(fiber) { |
| 11617 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected