(workInProgress, Component, props, secondArg)
| 7217 | (didReceiveUpdate = !0)); |
| 7218 | } |
| 7219 | function renderWithHooksAgain(workInProgress, Component, props, secondArg) { |
| 7220 | currentlyRenderingFiber$1 = workInProgress; |
| 7221 | var numberOfReRenders = 0; |
| 7222 | do { |
| 7223 | didScheduleRenderPhaseUpdateDuringThisPass && (thenableState = null); |
| 7224 | thenableIndexCounter = 0; |
| 7225 | didScheduleRenderPhaseUpdateDuringThisPass = !1; |
| 7226 | if (25 <= numberOfReRenders) throw Error(formatProdErrorMessage(301)); |
| 7227 | numberOfReRenders += 1; |
| 7228 | workInProgressHook = currentHook = null; |
| 7229 | if (null != workInProgress.updateQueue) { |
| 7230 | var children = workInProgress.updateQueue; |
| 7231 | children.lastEffect = null; |
| 7232 | children.events = null; |
| 7233 | children.stores = null; |
| 7234 | null != children.memoCache && (children.memoCache.index = 0); |
| 7235 | } |
| 7236 | ReactSharedInternals.H = HooksDispatcherOnRerender; |
| 7237 | children = Component(props, secondArg); |
| 7238 | } while (didScheduleRenderPhaseUpdateDuringThisPass); |
| 7239 | return children; |
| 7240 | } |
| 7241 | function TransitionAwareHostComponent() { |
| 7242 | var dispatcher = ReactSharedInternals.H, |
| 7243 | maybeThenable = dispatcher.useState()[0]; |
no test coverage detected
searching dependent graphs…