(returnFiber, newChild)
| 14893 | } |
| 14894 | |
| 14895 | function throwOnInvalidObjectType(returnFiber, newChild) { |
| 14896 | var childString = Object.prototype.toString.call(newChild); |
| 14897 | 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.'); |
| 14898 | } |
| 14899 | |
| 14900 | function warnOnFunctionType(returnFiber) { |
| 14901 | { |
no test coverage detected
searching dependent graphs…