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

Function markRef

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

Source from the content-addressed store, hash-verified

10066 }
10067
10068 function markRef(current, workInProgress) {
10069 var ref = workInProgress.ref;
10070 if (current === null && ref !== null || current !== null && current.ref !== ref) {
10071 // Schedule a Ref effect
10072 workInProgress.effectTag |= Ref;
10073 }
10074 }
10075
10076 function updateFunctionalComponent(current, workInProgress) {
10077 var fn = workInProgress.type;

Callers 3

finishClassComponentFunction · 0.70
updateHostComponentFunction · 0.70
completeWorkFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected