(params: Dap.VariablesParams)
| 224 | } |
| 225 | |
| 226 | async _onVariables(params: Dap.VariablesParams): Promise<Dap.VariablesResult> { |
| 227 | const variableStore = this._findVariableStore(params.variablesReference); |
| 228 | if (!variableStore) return { variables: [] }; |
| 229 | return { variables: await variableStore.getVariables(params) }; |
| 230 | } |
| 231 | |
| 232 | async _onSetVariable(params: Dap.SetVariableParams): Promise<Dap.SetVariableResult | Dap.Error> { |
| 233 | const variableStore = this._findVariableStore(params.variablesReference); |
no test coverage detected