(workInProgress)
| 7261 | current.lanes &= ~lanes; |
| 7262 | } |
| 7263 | function resetHooksOnUnwind(workInProgress) { |
| 7264 | if (didScheduleRenderPhaseUpdate) { |
| 7265 | for ( |
| 7266 | workInProgress = workInProgress.memoizedState; |
| 7267 | null !== workInProgress; |
| 7268 | |
| 7269 | ) { |
| 7270 | var queue = workInProgress.queue; |
| 7271 | null !== queue && (queue.pending = null); |
| 7272 | workInProgress = workInProgress.next; |
| 7273 | } |
| 7274 | didScheduleRenderPhaseUpdate = !1; |
| 7275 | } |
| 7276 | renderLanes = 0; |
| 7277 | workInProgressHook = currentHook = currentlyRenderingFiber$1 = null; |
| 7278 | didScheduleRenderPhaseUpdateDuringThisPass = !1; |
| 7279 | thenableIndexCounter = localIdCounter = 0; |
| 7280 | thenableState = null; |
| 7281 | } |
| 7282 | function mountWorkInProgressHook() { |
| 7283 | var hook = { |
| 7284 | memoizedState: null, |
no outgoing calls
no test coverage detected
searching dependent graphs…