(context)
| 10719 | null !== workInProgress && (workInProgress.firstContext = null); |
| 10720 | } |
| 10721 | function readContext(context) { |
| 10722 | return readContextForConsumer(currentlyRenderingFiber, context); |
| 10723 | } |
| 10724 | function readContextDuringReconciliation(consumer, context) { |
| 10725 | null === currentlyRenderingFiber && prepareToReadContext(consumer); |
| 10726 | return readContextForConsumer(consumer, context); |
no test coverage detected
searching dependent graphs…