(fiber)
| 12385 | } |
| 12386 | |
| 12387 | function isContextConsumer(fiber) { |
| 12388 | return fiber.tag === ClassComponent && fiber.type.contextTypes != null; |
| 12389 | } |
| 12390 | |
| 12391 | function isContextProvider(fiber) { |
| 12392 | return fiber.tag === ClassComponent && fiber.type.childContextTypes != null; |
no outgoing calls
no test coverage detected