(name, source, ownerName)
| 3981 | var ReactDebugCurrentFrame = ReactInternals.ReactDebugCurrentFrame; |
| 3982 | |
| 3983 | var describeComponentFrame = function (name, source, ownerName) { |
| 3984 | return '\n in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : ''); |
| 3985 | }; |
| 3986 | |
| 3987 | // The Symbol used to tag the ReactElement-like types. If there is no native Symbol |
| 3988 | // nor polyfill, then a plain number is used for performance. |
no outgoing calls
no test coverage detected