()
| 329 | } |
| 330 | |
| 331 | targetList(): ITarget[] { |
| 332 | const result: ITarget[] = []; |
| 333 | for (const delegate of this.getLaunchers()) { |
| 334 | result.push(...delegate.targetList()); |
| 335 | } |
| 336 | |
| 337 | return result; |
| 338 | } |
| 339 | |
| 340 | public async attach(target: ITarget, launcher: ILauncher) { |
| 341 | if (!this._launchParams) { |
no test coverage detected