(_newChild: IRRNode)
| 171 | |
| 172 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 173 | public appendChild(_newChild: IRRNode): IRRNode { |
| 174 | throw new Error( |
| 175 | `RRDomException: Failed to execute 'appendChild' on 'RRNode': This RRNode type does not support this method.`, |
| 176 | ); |
| 177 | } |
| 178 | |
| 179 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 180 | public insertBefore(_newChild: IRRNode, _refChild: IRRNode | null): IRRNode { |
no test coverage detected
searching dependent graphs…