(returnFiber, newChild)
| 13129 | } |
| 13130 | |
| 13131 | function throwOnInvalidObjectType(returnFiber, newChild) { |
| 13132 | var childString = Object.prototype.toString.call(newChild); |
| 13133 | throw new Error("Objects are not valid as a React child (found: " + (childString === '[object Object]' ? 'object with keys {' + Object.keys(newChild).join(', ') + '}' : childString) + "). " + 'If you meant to render a collection of children, use an array ' + 'instead.'); |
| 13134 | } |
| 13135 | |
| 13136 | function warnOnFunctionType(returnFiber) { |
| 13137 | { |
no test coverage detected
searching dependent graphs…