(fiber)
| 12601 | } |
| 12602 | |
| 12603 | function isContextConsumer(fiber) { |
| 12604 | return fiber.tag === ClassComponent && fiber.type.contextTypes != null; |
| 12605 | } |
| 12606 | |
| 12607 | function isContextProvider(fiber) { |
| 12608 | return fiber.tag === ClassComponent && fiber.type.childContextTypes != null; |
no outgoing calls
no test coverage detected