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