[Lldb-commits] [lldb] [lldb-dap] Refactor breakpoint related request handlers (NFC) (PR #128550)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 24 11:43:37 PST 2025


================
@@ -52,6 +52,9 @@ class RequestHandler {
   // Check if the step-granularity is `instruction`.
   bool HasInstructionGranularity(const llvm::json::Object &request);
 
+  lldb::SBValueList *GetTopLevelScope(int64_t variablesReference);
+  lldb::SBValue FindVariable(uint64_t variablesReference, llvm::StringRef name);
----------------
ashgti wrote:

Should these be moved to the `lldb_dap::DAP` or `lldb_dap::Variables`?

https://github.com/llvm/llvm-project/pull/128550


More information about the lldb-commits mailing list