(componentName, isMounted, phase)
| 6875 | }; |
| 6876 | |
| 6877 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 6878 | if (phase === null) { |
| 6879 | // These are composite component total time measurements. |
| 6880 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 6881 | } else { |
| 6882 | // Composite component methods. |
| 6883 | return componentName + '.' + phase; |
| 6884 | } |
| 6885 | }; |
| 6886 | |
| 6887 | var beginFiberMark = function (fiber, phase) { |
| 6888 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected