[Lldb-commits] [lldb] [lldb-dap] Add module symbol table viewer to VS Code extension #140626 (PR #153836)
John Harrison via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 15 15:27:55 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'"
----------------
ashgti wrote:
We could also set a custom context item here like `supportsModuleSymbols` so the when becomes `debugType == 'lldb-dap' && supportsModuleSymbols`.
https://github.com/llvm/llvm-project/pull/153836
More information about the lldb-commits
mailing list