(parentInstance)
| 7797 | return getNextHydratable(instance.nextSibling); |
| 7798 | } |
| 7799 | function getFirstHydratableChild(parentInstance) { |
| 7800 | return getNextHydratable(parentInstance.firstChild); |
| 7801 | } |
| 7802 | function hydrateInstance(instance, type, props, rootContainerInstance, hostContext, internalInstanceHandle) { |
| 7803 | precacheFiberNode(internalInstanceHandle, instance); // TODO: Possibly defer this until the commit phase where all the events |
| 7804 | // get attached. |
no test coverage detected