(variablesReference: number)
| 270 | } |
| 271 | |
| 272 | public async getVariables(variablesReference: number): Promise<DebugProtocol.Variable[]> { |
| 273 | const variables = await this.variablesRequest({ variablesReference }); |
| 274 | return variables.body.variables; |
| 275 | } |
| 276 | |
| 277 | public async evaluateForFrame(expression: string, context?: string): Promise<{ |
| 278 | result: string; |
no test coverage detected