We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
arguments
1 parent 34bd7c5 commit f318fe1Copy full SHA for f318fe1
lldb/tools/lldb-dap/Handler/RequestHandler.cpp
@@ -226,8 +226,8 @@ void RequestHandler::PrintWelcomeMessage() {
226
}
227
228
bool RequestHandler::HasInstructionGranularity(
229
- const llvm::json::Object &request) {
230
- if (std::optional<llvm::StringRef> value = request.getString("granularity"))
+ const llvm::json::Object &arguments) {
+ if (std::optional<llvm::StringRef> value = arguments.getString("granularity"))
231
return value == "instruction";
232
return false;
233
0 commit comments