Ely Ronnen 8b64cd8be2
[lldb-dap] Add module symbol table viewer to VS Code extension #140626 (#153836)
- VS Code extension:
- Add module symbol table viewer using
[Tabulator](https://tabulator.info/) for sorting and formatting rows.
  - Add context menu action to the modules tree.
 - lldb-dap
   -  Add `DAPGetModuleSymbolsRequest` to get symbols from a module.
 
Fixes #140626

[Screencast From 2025-08-15
19-12-33.webm](https://github.com/user-attachments/assets/75e2f229-ac82-487c-812e-3ea33a575b70)
2025-08-21 00:31:48 +02:00

15 lines
280 B
TypeScript

export {};
/// The symbol type we get from the lldb-dap server
export declare interface SymbolType {
id: number;
isDebug: boolean;
isSynthetic: boolean;
isExternal: boolean;
type: string;
fileAddress: number;
loadAddress?: number;
size: number;
name: string;
}