(finishedWork, hookFlags)
| 29566 | } |
| 29567 | } |
| 29568 | function commitHookPassiveMountEffects(finishedWork, hookFlags) { |
| 29569 | shouldProfile(finishedWork) |
| 29570 | ? (startEffectTimer(), |
| 29571 | commitHookEffectListMount(hookFlags, finishedWork), |
| 29572 | recordEffectDuration()) |
| 29573 | : commitHookEffectListMount(hookFlags, finishedWork); |
| 29574 | } |
| 29575 | function commitHookPassiveUnmountEffects( |
| 29576 | finishedWork, |
| 29577 | nearestMountedAncestor, |
no test coverage detected
searching dependent graphs…