(current)
| 11900 | } |
| 11901 | |
| 11902 | function commitDeletion(current) { |
| 11903 | // Recursively delete all host nodes from the parent. |
| 11904 | // Detach refs and call componentWillUnmount() on the whole subtree. |
| 11905 | unmountHostComponents(current); |
| 11906 | detachFiber(current); |
| 11907 | } |
| 11908 | |
| 11909 | function commitWork(current, finishedWork) { |
| 11910 | switch (finishedWork.tag) { |
no test coverage detected