(container, child, beforeChild)
| 7714 | parentInstance.insertBefore(child, beforeChild); |
| 7715 | } |
| 7716 | function insertInContainerBefore(container, child, beforeChild) { |
| 7717 | if (container.nodeType === COMMENT_NODE) { |
| 7718 | container.parentNode.insertBefore(child, beforeChild); |
| 7719 | } else { |
| 7720 | container.insertBefore(child, beforeChild); |
| 7721 | } |
| 7722 | } |
| 7723 | function removeChild(parentInstance, child) { |
| 7724 | parentInstance.removeChild(child); |
| 7725 | } |
no outgoing calls
no test coverage detected