(fiber)
| 23926 | } |
| 23927 | |
| 23928 | function isHostParent(fiber) { |
| 23929 | return fiber.tag === HostComponent || fiber.tag === HostRoot || fiber.tag === HostPortal; |
| 23930 | } |
| 23931 | |
| 23932 | function getHostSibling(fiber) { |
| 23933 | // We're going to search forward into the tree until we find a sibling host |
no outgoing calls
no test coverage detected