[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:52 PDT 2025


================
@@ -0,0 +1,14 @@
+export {};
+
+/// The symbol type we get from the lldb-dap server
+export type DAPSymbolType = {
----------------
ashgti wrote:

If this type is going to be shared between the web and node runtime, its somewhat common to `declare interface` for the type. That tells a number of ts/js bundlers to not shorten the keys. 

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


More information about the lldb-commits mailing list