(componentName, isMounted, phase)
| 7387 | }; |
| 7388 | |
| 7389 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 7390 | if (phase === null) { |
| 7391 | // These are composite component total time measurements. |
| 7392 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 7393 | } else { |
| 7394 | // Composite component methods. |
| 7395 | return componentName + '.' + phase; |
| 7396 | } |
| 7397 | }; |
| 7398 | |
| 7399 | var beginFiberMark = function (fiber, phase) { |
| 7400 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected