(fiber)
| 11583 | } |
| 11584 | |
| 11585 | function isContextConsumer(fiber) { |
| 11586 | return fiber.tag === ClassComponent && fiber.type.contextTypes != null; |
| 11587 | } |
| 11588 | |
| 11589 | function isContextProvider(fiber) { |
| 11590 | return fiber.tag === ClassComponent && fiber.type.childContextTypes != null; |
no outgoing calls
no test coverage detected