MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / updateHostText

Function updateHostText

code/redux/public/app.js:10326–10335  ·  view source on GitHub ↗
(current, workInProgress)

Source from the content-addressed store, hash-verified

10324 }
10325
10326 function updateHostText(current, workInProgress) {
10327 if (current === null) {
10328 tryToClaimNextHydratableInstance(workInProgress);
10329 }
10330 var nextProps = workInProgress.pendingProps;
10331 memoizeProps(workInProgress, nextProps);
10332 // Nothing to do here. This is terminal. We'll do the completion step
10333 // immediately after.
10334 return null;
10335 }
10336
10337 function mountIndeterminateComponent(current, workInProgress, renderExpirationTime) {
10338 !(current === null) ? invariant(false, 'An indeterminate component should never have mounted. This error is likely caused by a bug in React. Please file an issue.') : void 0;

Callers 2

beginWorkFunction · 0.70
completeWorkFunction · 0.70

Calls 2

memoizePropsFunction · 0.70

Tested by

no test coverage detected