* Returns the child chunk groups reachable from this group. * @returns {ChunkGroup[]} returns the children of this group
()
| 314 | * @returns {ChunkGroup[]} returns the children of this group |
| 315 | */ |
| 316 | getChildren() { |
| 317 | return this._children.getFromCache(getArray); |
| 318 | } |
| 319 | |
| 320 | getNumberOfChildren() { |
| 321 | return this._children.size; |
no test coverage detected