(adapter: DebugAdapter, target: ITarget)
| 303 | } |
| 304 | |
| 305 | async _init(adapter: DebugAdapter, target: ITarget) { |
| 306 | this._adapter = adapter; |
| 307 | await this._session._init(); |
| 308 | if (this._target.parent()) { |
| 309 | this.dap.configurationDone({}); |
| 310 | this.dap.attach({}); |
| 311 | } |
| 312 | |
| 313 | return true; |
| 314 | } |
| 315 | |
| 316 | async load() { |
| 317 | await this.dap.configurationDone({}); |
nothing calls this directly
no test coverage detected