(fiber)
| 10738 | } |
| 10739 | var hasForceUpdate = !1; |
| 10740 | function initializeUpdateQueue(fiber) { |
| 10741 | fiber.updateQueue = { |
| 10742 | baseState: fiber.memoizedState, |
| 10743 | firstBaseUpdate: null, |
| 10744 | lastBaseUpdate: null, |
| 10745 | shared: { pending: null, lanes: 0, hiddenCallbacks: null }, |
| 10746 | callbacks: null |
| 10747 | }; |
| 10748 | } |
| 10749 | function cloneUpdateQueue(current, workInProgress) { |
| 10750 | current = current.updateQueue; |
| 10751 | workInProgress.updateQueue === current && |
no outgoing calls
no test coverage detected
searching dependent graphs…