(parentSuspense, doRemove)
| 778 | }, |
| 779 | |
| 780 | unmount(parentSuspense, doRemove) { |
| 781 | suspense.isUnmounted = true |
| 782 | if (suspense.activeBranch) { |
| 783 | unmount( |
| 784 | suspense.activeBranch, |
| 785 | parentComponent, |
| 786 | parentSuspense, |
| 787 | doRemove, |
| 788 | ) |
| 789 | } |
| 790 | if (suspense.pendingBranch) { |
| 791 | unmount( |
| 792 | suspense.pendingBranch, |
| 793 | parentComponent, |
| 794 | parentSuspense, |
| 795 | doRemove, |
| 796 | ) |
| 797 | } |
| 798 | }, |
| 799 | } |
| 800 | |
| 801 | return suspense |
no outgoing calls
no test coverage detected