[Lldb-commits] [lldb] [lldb-dap] Add module symbol table viewer to VS Code extension #140626 (PR #153836)

Ely Ronnen via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 15 16:34:42 PDT 2025


================
@@ -981,6 +981,23 @@ struct WriteMemoryResponseBody {
 };
 llvm::json::Value toJSON(const WriteMemoryResponseBody &);
 
+struct DAPGetModuleSymbolsArguments {
+  /// The module UUID for which to retrieve symbols.
+  std::optional<std::string> moduleId;
----------------
eronnen wrote:

I wanted to have the option to send an empty message and get empty response which is not an error, this way a new VS Code with an old lldb-dap server will know that the server is able to handle the symbol request

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


More information about the lldb-commits mailing list