(componentName, isMounted, phase)
| 7607 | }; |
| 7608 | |
| 7609 | var getFiberLabel = function (componentName, isMounted, phase) { |
| 7610 | if (phase === null) { |
| 7611 | // These are composite component total time measurements. |
| 7612 | return componentName + ' [' + (isMounted ? 'update' : 'mount') + ']'; |
| 7613 | } else { |
| 7614 | // Composite component methods. |
| 7615 | return componentName + '.' + phase; |
| 7616 | } |
| 7617 | }; |
| 7618 | |
| 7619 | var beginFiberMark = function (fiber, phase) { |
| 7620 | var componentName = getComponentName(fiber) || 'Unknown'; |
no outgoing calls
no test coverage detected