* Remove the given child.
(child: Node)
| 1329 | * Remove the given child. |
| 1330 | */ |
| 1331 | protected removeChild(child: Node) { |
| 1332 | this.setParsedChildren(this.children().filter(node => node !== child)); |
| 1333 | } |
| 1334 | |
| 1335 | /** |
| 1336 | * Whether this node should be cached or not. |
no test coverage detected