(finishedWork, hookFlags)
| 29396 | return (current.mode & ProfileMode) !== NoMode; |
| 29397 | } |
| 29398 | function commitHookLayoutEffects(finishedWork, hookFlags) { |
| 29399 | shouldProfile(finishedWork) |
| 29400 | ? (startEffectTimer(), |
| 29401 | commitHookEffectListMount(hookFlags, finishedWork), |
| 29402 | recordEffectDuration()) |
| 29403 | : commitHookEffectListMount(hookFlags, finishedWork); |
| 29404 | } |
| 29405 | function commitHookLayoutUnmountEffects( |
| 29406 | finishedWork, |
| 29407 | nearestMountedAncestor, |
no test coverage detected
searching dependent graphs…