[Lldb-commits] [lldb] [lldb-dap] Add invalidated event (PR #157530)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Tue Sep 9 09:57:23 PDT 2025


================
@@ -440,6 +441,8 @@ def _handle_event(self, packet: Event) -> None:
         elif event == "capabilities" and body:
             # Update the capabilities with new ones from the event.
             self.capabilities.update(body["capabilities"])
+        elif event == "invalidated":
+            self.invalidated_event = packet
----------------
ashgti wrote:

Should this be a list in case we get more invalidate events? Or when does this reset?

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


More information about the lldb-commits mailing list