(componentName, isMounted, phase)
| 6747 | }; |
| 6748 | |
| 6749 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 6750 | if (phase === null) { |
| 6751 | // These are composite component total time measurements. |
| 6752 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 6753 | } else { |
| 6754 | // Composite component methods. |
| 6755 | return componentName + '.' + phase; |
| 6756 | } |
| 6757 | }; |
| 6758 | |
| 6759 | var beginFiberMark = function (fiber, phase) { |
| 6760 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected