(componentName, isMounted, phase)
| 6838 | }; |
| 6839 | |
| 6840 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 6841 | if (phase === null) { |
| 6842 | // These are composite component total time measurements. |
| 6843 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 6844 | } else { |
| 6845 | // Composite component methods. |
| 6846 | return componentName + '.' + phase; |
| 6847 | } |
| 6848 | }; |
| 6849 | |
| 6850 | var beginFiberMark = function (fiber, phase) { |
| 6851 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected