(action)
| 7868 | actionQueue.action = action; |
| 7869 | } |
| 7870 | function rerenderActionState(action) { |
| 7871 | var stateHook = updateWorkInProgressHook(), |
| 7872 | currentStateHook = currentHook; |
| 7873 | if (null !== currentStateHook) |
| 7874 | return updateActionStateImpl(stateHook, currentStateHook, action); |
| 7875 | updateWorkInProgressHook(); |
| 7876 | stateHook = stateHook.memoizedState; |
| 7877 | currentStateHook = updateWorkInProgressHook(); |
| 7878 | var dispatch = currentStateHook.queue.dispatch; |
| 7879 | currentStateHook.memoizedState = action; |
| 7880 | return [stateHook, dispatch, !1]; |
| 7881 | } |
| 7882 | function pushEffect(tag, create, inst, deps) { |
| 7883 | tag = { tag: tag, create: create, inst: inst, deps: deps, next: null }; |
| 7884 | create = currentlyRenderingFiber$1.updateQueue; |
no test coverage detected
searching dependent graphs…