(componentName, isMounted, phase)
| 7549 | }; |
| 7550 | |
| 7551 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 7552 | if (phase === null) { |
| 7553 | // These are composite component total time measurements. |
| 7554 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 7555 | } else { |
| 7556 | // Composite component methods. |
| 7557 | return componentName + '.' + phase; |
| 7558 | } |
| 7559 | }; |
| 7560 | |
| 7561 | var beginFiberMark = function (fiber, phase) { |
| 7562 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected