()
| 378 | } |
| 379 | |
| 380 | targetList(): ITarget[] { |
| 381 | const result: ITarget[] = []; |
| 382 | for (const delegate of this.getLaunchers()) { |
| 383 | result.push(...delegate.targetList()); |
| 384 | } |
| 385 | |
| 386 | return result; |
| 387 | } |
| 388 | |
| 389 | private async attach(node: TargetTreeNode, launcher: ILauncher) { |
| 390 | if (!this._launchParams) { |
no test coverage detected