(fiber)
| 12488 | } |
| 12489 | |
| 12490 | function isContextConsumer(fiber) { |
| 12491 | return fiber.tag === ClassComponent && fiber.type.contextTypes != null; |
| 12492 | } |
| 12493 | |
| 12494 | function isContextProvider(fiber) { |
| 12495 | return fiber.tag === ClassComponent && fiber.type.childContextTypes != null; |
no outgoing calls
no test coverage detected