(_newChild: IRRNode, _refChild: IRRNode | null)
| 178 | |
| 179 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 180 | public insertBefore(_newChild: IRRNode, _refChild: IRRNode | null): IRRNode { |
| 181 | throw new Error( |
| 182 | `RRDomException: Failed to execute 'insertBefore' on 'RRNode': This RRNode type does not support this method.`, |
| 183 | ); |
| 184 | } |
| 185 | |
| 186 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 187 | public removeChild(_node: IRRNode): IRRNode { |
no test coverage detected