(fiber)
| 10971 | } |
| 10972 | |
| 10973 | function isHostParent(fiber) { |
| 10974 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 10975 | } |
| 10976 | |
| 10977 | function getHostSibling(fiber) { |
| 10978 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected