()
| 322 | } |
| 323 | |
| 324 | dispose() { |
| 325 | for (const disposable of this._disposables) disposable.dispose(); |
| 326 | this._disposables = []; |
| 327 | disposeContainer(this._rootServices); |
| 328 | this._detachOrphanThreads([]); |
| 329 | } |
| 330 | |
| 331 | targetList(): ITarget[] { |
| 332 | const result: ITarget[] = []; |
nothing calls this directly
no test coverage detected