(current$$1, instance)
| 16876 | } |
| 16877 | |
| 16878 | var callComponentWillUnmountWithTimer = function (current$$1, instance) { |
| 16879 | startPhaseTimer(current$$1, 'componentWillUnmount'); |
| 16880 | instance.props = current$$1.memoizedProps; |
| 16881 | instance.state = current$$1.memoizedState; |
| 16882 | instance.componentWillUnmount(); |
| 16883 | stopPhaseTimer(); |
| 16884 | }; |
| 16885 | |
| 16886 | // Capture errors so they don't interrupt unmounting. |
| 16887 | function safelyCallComponentWillUnmount(current$$1, instance) { |
nothing calls this directly
no test coverage detected