(passthrough, reducer)
| 25109 | ); |
| 25110 | } |
| 25111 | function rerenderOptimistic(passthrough, reducer) { |
| 25112 | var hook = updateWorkInProgressHook(); |
| 25113 | if (null !== currentHook) |
| 25114 | return updateOptimisticImpl(hook, currentHook, passthrough, reducer); |
| 25115 | hook.baseState = passthrough; |
| 25116 | return [passthrough, hook.queue.dispatch]; |
| 25117 | } |
| 25118 | function dispatchActionState( |
| 25119 | fiber, |
| 25120 | actionQueue, |
no test coverage detected
searching dependent graphs…