(args: DebugProtocol.ScopesArguments)
| 267 | } |
| 268 | |
| 269 | public scopesRequest(args: DebugProtocol.ScopesArguments): Promise<DebugProtocol.ScopesResponse> { |
| 270 | return this.send('scopes', args); |
| 271 | } |
| 272 | |
| 273 | public variablesRequest(args: DebugProtocol.VariablesArguments): Promise<DebugProtocol.VariablesResponse> { |
| 274 | return this.send('variables', args); |
no test coverage detected