(current, instance)
| 11220 | |
| 11221 | |
| 11222 | var callComponentWillUnmountWithTimer = function (current, instance) { |
| 11223 | startPhaseTimer(current, 'componentWillUnmount'); |
| 11224 | instance.props = current.memoizedProps; |
| 11225 | instance.state = current.memoizedState; |
| 11226 | instance.componentWillUnmount(); |
| 11227 | stopPhaseTimer(); |
| 11228 | }; |
| 11229 | |
| 11230 | // Capture errors so they don't interrupt unmounting. |
| 11231 | function safelyCallComponentWillUnmount(current, instance) { |
nothing calls this directly
no test coverage detected