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