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

Function markRef

code/new-context-api/public/app.js:9178–9184  ·  view source on GitHub ↗
(current, workInProgress)

Source from the content-addressed store, hash-verified

9176 }
9177
9178 function markRef(current, workInProgress) {
9179 var ref = workInProgress.ref;
9180 if (current === null && ref !== null || current !== null && current.ref !== ref) {
9181 // Schedule a Ref effect
9182 workInProgress.effectTag |= Ref;
9183 }
9184 }
9185
9186 function updateFunctionalComponent(current, workInProgress) {
9187 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