* Remove all children of this node.
()
| 982 | * Remove all children of this node. |
| 983 | */ |
| 984 | public removeChildren() { |
| 985 | for (const oldChild of this.realChildren) { |
| 986 | oldChild.parent(null); |
| 987 | } |
| 988 | this.setParsedChildren([]); |
| 989 | } |
| 990 | |
| 991 | /** |
| 992 | * Get the current children of this node. |
no test coverage detected