(child, ref)
| 175 | } |
| 176 | |
| 177 | insertAfter(child, ref) { |
| 178 | let index; |
| 179 | if (ref) { |
| 180 | index = this.childNodes.indexOf(ref); |
| 181 | if (index !== -1) index += 1; |
| 182 | } |
| 183 | this.insertChild(child, index); |
| 184 | } |
| 185 | |
| 186 | removeChild(child) { |
| 187 | const index = this.childNodes.indexOf(child); |
nothing calls this directly
no test coverage detected