[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
Sat Aug 16 05:57:44 PDT 2025


================
@@ -259,19 +266,40 @@
       {
         "command": "lldb-dap.modules.copyProperty",
         "title": "Copy Value"
+      },
+      {
+        "command": "lldb-dap.modules.showSymbols",
+        "title": "Show Module Symbols"
+      },
+      {
+        "category": "lldb-dap",
+        "command": "lldb-dap.debug.showSymbols",
+        "title": "Show Symbols of a Module"
       }
     ],
     "menus": {
       "commandPalette": [
         {
           "command": "lldb-dap.modules.copyProperty",
           "when": "false"
+        },
+        {
+          "command": "lldb-dap.modules.showSymbols",
+          "when": "false"
+        },
+        {
+          "command": "lldb-dap.debug.showSymbols",
+          "when": "debuggersAvailable && debugType == 'lldb-dap'"
----------------
eronnen wrote:

added `lldb-dap.supportsModuleSymbolsRequest`

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


More information about the lldb-commits mailing list