* Returns all node's children as an array.
()
| 1199 | * Returns all node's children as an array. |
| 1200 | */ |
| 1201 | exportChildren() { |
| 1202 | const result = []; |
| 1203 | this.forEachChild(function (node) { result.push(node); }); |
| 1204 | return result; |
| 1205 | } |
| 1206 | |
| 1207 | /** |
| 1208 | * Finds an immediate child with the specified label. |
no test coverage detected