(args: DebugProtocol.VariablesArguments)
| 271 | } |
| 272 | |
| 273 | public variablesRequest(args: DebugProtocol.VariablesArguments): Promise<DebugProtocol.VariablesResponse> { |
| 274 | return this.send('variables', args); |
| 275 | } |
| 276 | |
| 277 | public setVariableRequest(args: DebugProtocol.SetVariableArguments): Promise<DebugProtocol.SetVariableResponse> { |
| 278 | return this.send('setVariable', args); |