(current, instance)
| 11471 | |
| 11472 | |
| 11473 | var callComponentWillUnmountWithTimer = function (current, instance) { |
| 11474 | startPhaseTimer(current, 'componentWillUnmount'); |
| 11475 | instance.props = current.memoizedProps; |
| 11476 | instance.state = current.memoizedState; |
| 11477 | instance.componentWillUnmount(); |
| 11478 | stopPhaseTimer(); |
| 11479 | }; |
| 11480 | |
| 11481 | // Capture errors so they don't interrupt unmounting. |
| 11482 | function safelyCallComponentWillUnmount(current, instance) { |
nothing calls this directly
no test coverage detected