(fiber)
| 11711 | } |
| 11712 | |
| 11713 | function isContextConsumer(fiber) { |
| 11714 | return fiber.tag === ClassComponent && fiber.type.contextTypes != null; |
| 11715 | } |
| 11716 | |
| 11717 | function isContextProvider(fiber) { |
| 11718 | return fiber.tag === ClassComponent && fiber.type.childContextTypes != null; |
no outgoing calls
no test coverage detected