* Dispose * 销毁
()
| 624 | * 销毁 |
| 625 | */ |
| 626 | public dispose(): void { |
| 627 | if (this._parent) { |
| 628 | this._parent.removeChild(this); |
| 629 | } |
| 630 | |
| 631 | for (const child of this._children) { |
| 632 | child.dispose(); |
| 633 | } |
| 634 | |
| 635 | this._children.length = 0; |
| 636 | super.dispose(); |
| 637 | } |
| 638 | } |
nothing calls this directly
no test coverage detected