(parentInstance)
| 11369 | return getNextHydratable(instance.nextSibling); |
| 11370 | } |
| 11371 | function getFirstHydratableChild(parentInstance) { |
| 11372 | return getNextHydratable(parentInstance.firstChild); |
| 11373 | } |
| 11374 | function hydrateInstance(instance, type, props, rootContainerInstance, hostContext, internalInstanceHandle) { |
| 11375 | precacheFiberNode(internalInstanceHandle, instance); // TODO: Possibly defer this until the commit phase where all the events |
| 11376 | // get attached. |
no test coverage detected