(consumer, context)
| 10722 | return readContextForConsumer(currentlyRenderingFiber, context); |
| 10723 | } |
| 10724 | function readContextDuringReconciliation(consumer, context) { |
| 10725 | null === currentlyRenderingFiber && prepareToReadContext(consumer); |
| 10726 | return readContextForConsumer(consumer, context); |
| 10727 | } |
| 10728 | function readContextForConsumer(consumer, context) { |
| 10729 | var value = context._currentValue; |
| 10730 | context = { context: context, memoizedValue: value, next: null }; |
no test coverage detected
searching dependent graphs…