(child, ref)
| 167 | } |
| 168 | |
| 169 | insertBefore(child, ref) { |
| 170 | let index; |
| 171 | if (ref) { |
| 172 | index = this.childNodes.indexOf(ref); |
| 173 | } |
| 174 | this.insertChild(child, index); |
| 175 | } |
| 176 | |
| 177 | insertAfter(child, ref) { |
| 178 | let index; |
nothing calls this directly
no test coverage detected