(componentName, isMounted, phase)
| 7652 | }; |
| 7653 | |
| 7654 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 7655 | if (phase === null) { |
| 7656 | // These are composite component total time measurements. |
| 7657 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 7658 | } else { |
| 7659 | // Composite component methods. |
| 7660 | return componentName + '.' + phase; |
| 7661 | } |
| 7662 | }; |
| 7663 | |
| 7664 | var beginFiberMark = function (fiber, phase) { |
| 7665 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected