(params: Dap.VariablesParams)
| 466 | } |
| 467 | |
| 468 | async _onVariables(params: Dap.VariablesParams): Promise<Dap.VariablesResult> { |
| 469 | const variableStore = this.findVariableStore(v => v.hasVariable(params.variablesReference)); |
| 470 | return { variables: (await variableStore?.getVariables(params)) ?? [] }; |
| 471 | } |
| 472 | |
| 473 | async _onReadMemory(params: Dap.ReadMemoryParams): Promise<Dap.ReadMemoryResult> { |
| 474 | const ref = params.memoryReference; |
no test coverage detected