(child: GObject)
| 262 | } |
| 263 | |
| 264 | public removeChildToPool(child: GObject): void { |
| 265 | super.removeChild(child); |
| 266 | this.returnToPool(child); |
| 267 | } |
| 268 | |
| 269 | public removeChildrenToPool(beginIndex: number = 0, endIndex: number = -1): void { |
| 270 | if (endIndex < 0 || endIndex >= this.numChildren) { |
nothing calls this directly
no test coverage detected