(textInstance, text, internalInstanceHandle)
| 7814 | return diffHydratedProperties(instance, type, props, parentNamespace, rootContainerInstance); |
| 7815 | } |
| 7816 | function hydrateTextInstance(textInstance, text, internalInstanceHandle) { |
| 7817 | precacheFiberNode(internalInstanceHandle, textInstance); |
| 7818 | return diffHydratedText(textInstance, text); |
| 7819 | } |
| 7820 | function getNextHydratableInstanceAfterSuspenseInstance(suspenseInstance) { |
| 7821 | var node = suspenseInstance.nextSibling; // Skip past all nodes within this suspense boundary. |
| 7822 | // There might be nested nodes so we need to keep track of how |
no test coverage detected