[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
Tue Aug 19 08:48:04 PDT 2025
================
@@ -146,6 +164,10 @@ export class DebugSessionTracker
this.logger.info(
`Session "${session.name}" exited with code ${exitCode}`,
);
+
+ this.sessionExited.fire(session);
+ } else if (isEvent(message, "capabilities")) {
+ this.sessionGotCapabilities.fire([ session, message.body.capabilities ]);
----------------
ashgti wrote:
Fair enough, I suppose we don't need to save it then.
https://github.com/llvm/llvm-project/pull/153836
More information about the lldb-commits
mailing list