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


================
@@ -56,6 +57,14 @@ struct ModuleEventBody {
 llvm::json::Value toJSON(const ModuleEventBody::Reason &);
 llvm::json::Value toJSON(const ModuleEventBody &);
 
+struct InvalidatedEventBody {
+  enum Area : unsigned { eAreaAll, eAreaStacks, eAreaThreads, eAreaVariables };
+
+  std::vector<Area> areas;
----------------
ashgti wrote:

Should we have the fields for `threadId` and `stackFrameId` in case we add that in the future?

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


More information about the lldb-commits mailing list