(args: DebugProtocol.AttachRequestArguments)
| 187 | } |
| 188 | |
| 189 | public attachRequest(args: DebugProtocol.AttachRequestArguments): Promise<DebugProtocol.AttachResponse> { |
| 190 | return this.send('attach', args); |
| 191 | } |
| 192 | |
| 193 | public restartRequest(args: DebugProtocol.RestartArguments): Promise<DebugProtocol.RestartResponse> { |
| 194 | return this.send('restart', args); |