MCPcopy Index your code
hub / github.com/caseywebdev/react-list / mountWorkInProgressHook

Function mountWorkInProgressHook

docs/index.js:7282–7294  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7280 thenableState = null;
7281}
7282function mountWorkInProgressHook() {
7283 var hook = {
7284 memoizedState: null,
7285 baseState: null,
7286 baseQueue: null,
7287 queue: null,
7288 next: null
7289 };
7290 null === workInProgressHook
7291 ? (currentlyRenderingFiber$1.memoizedState = workInProgressHook = hook)
7292 : (workInProgressHook = workInProgressHook.next = hook);
7293 return workInProgressHook;
7294}
7295function updateWorkInProgressHook() {
7296 if (null === currentHook) {
7297 var nextCurrentHook = currentlyRenderingFiber$1.alternate;

Callers 14

mountStateImplFunction · 0.85
mountActionStateFunction · 0.85
mountEffectImplFunction · 0.85
index.jsFile · 0.85
mountReducerFunction · 0.85
mountSyncExternalStoreFunction · 0.85
mountOptimisticFunction · 0.85
mountRefFunction · 0.85
mountCallbackFunction · 0.85
mountMemoFunction · 0.85
mountDeferredValueFunction · 0.85
mountTransitionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…