(tag, pendingProps, key, mode)
| 28160 | |
| 28161 | |
| 28162 | var createFiber = function (tag, pendingProps, key, mode) { |
| 28163 | // $FlowFixMe: the shapes are exact here but Flow doesn't like constructors |
| 28164 | return new FiberNode(tag, pendingProps, key, mode); |
| 28165 | }; |
| 28166 | |
| 28167 | function shouldConstruct$1(Component) { |
| 28168 | var prototype = Component.prototype; |
no outgoing calls
no test coverage detected
searching dependent graphs…