(container, child)
| 7724 | parentInstance.removeChild(child); |
| 7725 | } |
| 7726 | function removeChildFromContainer(container, child) { |
| 7727 | if (container.nodeType === COMMENT_NODE) { |
| 7728 | container.parentNode.removeChild(child); |
| 7729 | } else { |
| 7730 | container.removeChild(child); |
| 7731 | } |
| 7732 | } |
| 7733 | |
| 7734 | function hideInstance(instance) { |
| 7735 | // pass host context to this method? |
no outgoing calls
no test coverage detected