(newElement: React$Element<any>)
| 577 | return toTree(root.current); |
| 578 | }, |
| 579 | update(newElement: React$Element<any>): number | void { |
| 580 | if (root == null || root.current == null) { |
| 581 | return; |
| 582 | } |
| 583 | updateContainer(newElement, root, null, null); |
| 584 | }, |
| 585 | unmount() { |
| 586 | if (root == null || root.current == null) { |
| 587 | return; |
nothing calls this directly
no test coverage detected