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

Function updateForwardRef

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

Source from the content-addressed store, hash-verified

10032 }
10033
10034 function updateForwardRef(current, workInProgress) {
10035 var render = workInProgress.type.render;
10036 var nextChildren = render(workInProgress.pendingProps, workInProgress.ref);
10037 reconcileChildren(current, workInProgress, nextChildren);
10038 memoizeProps(workInProgress, nextChildren);
10039 return workInProgress.child;
10040 }
10041
10042 function updateFragment(current, workInProgress) {
10043 var nextChildren = workInProgress.pendingProps;

Callers 1

beginWorkFunction · 0.70

Calls 2

reconcileChildrenFunction · 0.70
memoizePropsFunction · 0.70

Tested by

no test coverage detected