(currentDependencies)
| 10696 | workInProgress.flags |= 262144; |
| 10697 | } |
| 10698 | function checkIfContextChanged(currentDependencies) { |
| 10699 | for ( |
| 10700 | currentDependencies = currentDependencies.firstContext; |
| 10701 | null !== currentDependencies; |
| 10702 | |
| 10703 | ) { |
| 10704 | if ( |
| 10705 | !objectIs( |
| 10706 | currentDependencies.context._currentValue, |
| 10707 | currentDependencies.memoizedValue |
| 10708 | ) |
| 10709 | ) |
| 10710 | return !0; |
| 10711 | currentDependencies = currentDependencies.next; |
| 10712 | } |
| 10713 | return !1; |
| 10714 | } |
| 10715 | function prepareToReadContext(workInProgress) { |
| 10716 | currentlyRenderingFiber = workInProgress; |
| 10717 | lastContextDependency = null; |
no outgoing calls
no test coverage detected
searching dependent graphs…