()
| 1729 | } |
| 1730 | |
| 1731 | function getDeclarationErrorAddendum() { |
| 1732 | if (ReactCurrentOwner.current) { |
| 1733 | var name = getComponentName(ReactCurrentOwner.current.type); |
| 1734 | |
| 1735 | if (name) { |
| 1736 | return '\n\nCheck the render method of `' + name + '`.'; |
| 1737 | } |
| 1738 | } |
| 1739 | |
| 1740 | return ''; |
| 1741 | } |
| 1742 | |
| 1743 | function getSourceInfoErrorAddendum(source) { |
| 1744 | if (source !== undefined) { |
no test coverage detected
searching dependent graphs…