(textInstance, text, internalInstanceHandle)
| 11386 | return diffHydratedProperties(instance, type, props, parentNamespace, rootContainerInstance); |
| 11387 | } |
| 11388 | function hydrateTextInstance(textInstance, text, internalInstanceHandle) { |
| 11389 | precacheFiberNode(internalInstanceHandle, textInstance); |
| 11390 | return diffHydratedText(textInstance, text); |
| 11391 | } |
| 11392 | function getNextHydratableInstanceAfterSuspenseInstance(suspenseInstance) { |
| 11393 | var node = suspenseInstance.nextSibling; // Skip past all nodes within this suspense boundary. |
| 11394 | // There might be nested nodes so we need to keep track of how |
no test coverage detected