(
finishedWork,
nearestMountedAncestor,
hookFlags
)
| 29403 | : commitHookEffectListMount(hookFlags, finishedWork); |
| 29404 | } |
| 29405 | function commitHookLayoutUnmountEffects( |
| 29406 | finishedWork, |
| 29407 | nearestMountedAncestor, |
| 29408 | hookFlags |
| 29409 | ) { |
| 29410 | shouldProfile(finishedWork) |
| 29411 | ? (startEffectTimer(), |
| 29412 | commitHookEffectListUnmount( |
| 29413 | hookFlags, |
| 29414 | finishedWork, |
| 29415 | nearestMountedAncestor |
| 29416 | ), |
| 29417 | recordEffectDuration()) |
| 29418 | : commitHookEffectListUnmount( |
| 29419 | hookFlags, |
| 29420 | finishedWork, |
| 29421 | nearestMountedAncestor |
| 29422 | ); |
| 29423 | } |
| 29424 | function commitHookEffectListMount(flags, finishedWork) { |
| 29425 | try { |
| 29426 | var updateQueue = finishedWork.updateQueue, |
no test coverage detected
searching dependent graphs…