(Component)
| 12876 | return new FiberNode(tag, pendingProps, key, mode); |
| 12877 | } |
| 12878 | function shouldConstruct(Component) { |
| 12879 | Component = Component.prototype; |
| 12880 | return !(!Component || !Component.isReactComponent); |
| 12881 | } |
| 12882 | function createWorkInProgress(current, pendingProps) { |
| 12883 | var workInProgress = current.alternate; |
| 12884 | null === workInProgress |
no outgoing calls
no test coverage detected
searching dependent graphs…