()
| 583 | updateContainer(newElement, root, null, null); |
| 584 | }, |
| 585 | unmount() { |
| 586 | if (root == null || root.current == null) { |
| 587 | return; |
| 588 | } |
| 589 | updateContainer(null, root, null, null); |
| 590 | // $FlowFixMe[incompatible-type] found when upgrading Flow |
| 591 | container = null; |
| 592 | root = null; |
| 593 | }, |
| 594 | getInstance() { |
| 595 | if (root == null || root.current == null) { |
| 596 | return null; |
nothing calls this directly
no test coverage detected