(fiber)
| 12350 | } |
| 12351 | |
| 12352 | function isContextConsumer(fiber) { |
| 12353 | return fiber.tag === ClassComponent && fiber.type.contextTypes != null; |
| 12354 | } |
| 12355 | |
| 12356 | function isContextProvider(fiber) { |
| 12357 | return fiber.tag === ClassComponent && fiber.type.childContextTypes != null; |
no outgoing calls
no test coverage detected