(componentName, isMounted, phase)
| 7765 | }; |
| 7766 | |
| 7767 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 7768 | if (phase === null) { |
| 7769 | // These are composite component total time measurements. |
| 7770 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 7771 | } else { |
| 7772 | // Composite component methods. |
| 7773 | return componentName + '.' + phase; |
| 7774 | } |
| 7775 | }; |
| 7776 | |
| 7777 | var beginFiberMark = function (fiber, phase) { |
| 7778 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected