(finishedWork)
| 11040 | } |
| 11041 | } |
| 11042 | function commitClassCallbacks(finishedWork) { |
| 11043 | var updateQueue = finishedWork.updateQueue; |
| 11044 | if (null !== updateQueue) { |
| 11045 | var instance = finishedWork.stateNode; |
| 11046 | try { |
| 11047 | commitCallbacks(updateQueue, instance); |
| 11048 | } catch (error) { |
| 11049 | captureCommitPhaseError(finishedWork, finishedWork.return, error); |
| 11050 | } |
| 11051 | } |
| 11052 | } |
| 11053 | function safelyCallComponentWillUnmount( |
| 11054 | current, |
| 11055 | nearestMountedAncestor, |
no test coverage detected
searching dependent graphs…