(newChild: BaseRRNode)
| 223 | } |
| 224 | |
| 225 | appendChild(newChild: BaseRRNode): BaseRRNode { |
| 226 | return super.appendChild(newChild) as BaseRRNode; |
| 227 | } |
| 228 | |
| 229 | insertBefore(newChild: BaseRRNode, refChild: BaseRRNode | null): BaseRRNode { |
| 230 | return super.insertBefore(newChild, refChild) as BaseRRNode; |
nothing calls this directly
no test coverage detected