(tag, pendingProps, key, mode)
| 27355 | |
| 27356 | |
| 27357 | var createFiber = function (tag, pendingProps, key, mode) { |
| 27358 | // $FlowFixMe: the shapes are exact here but Flow doesn't like constructors |
| 27359 | return new FiberNode(tag, pendingProps, key, mode); |
| 27360 | }; |
| 27361 | |
| 27362 | function shouldConstruct(Component) { |
| 27363 | var prototype = Component.prototype; |
no outgoing calls
no test coverage detected