()
| 1154 | } |
| 1155 | |
| 1156 | public dispose(): void { |
| 1157 | this._onDidSashEnd.dispose(); |
| 1158 | this._onDidAddView.dispose(); |
| 1159 | this._onDidRemoveView.dispose(); |
| 1160 | |
| 1161 | for (let i = 0; i < this.element.children.length; i++) { |
| 1162 | if (this.element.children.item(i) === this.element) { |
| 1163 | this.element.removeChild(this.element); |
| 1164 | break; |
| 1165 | } |
| 1166 | } |
| 1167 | |
| 1168 | for (const viewItem of this.viewItems) { |
| 1169 | viewItem.dispose(); |
| 1170 | } |
| 1171 | |
| 1172 | this.element.remove(); |
| 1173 | } |
| 1174 | } |
nothing calls this directly
no test coverage detected