(tag, pendingProps, key, mode)
| 23795 | |
| 23796 | |
| 23797 | var createFiber = function (tag, pendingProps, key, mode) { |
| 23798 | // $FlowFixMe: the shapes are exact here but Flow doesn't like constructors |
| 23799 | return new FiberNode(tag, pendingProps, key, mode); |
| 23800 | }; |
| 23801 | |
| 23802 | function shouldConstruct(Component) { |
| 23803 | var prototype = Component.prototype; |
no outgoing calls
no test coverage detected