[Lldb-commits] [lldb] [lldb-dap] Migrating 'stopped' event to structured types. (PR #176273)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 22 16:57:10 PST 2026


================
@@ -117,6 +117,68 @@ struct MemoryEventBody {
 };
 llvm::json::Value toJSON(const MemoryEventBody &);
 
+enum StopReason : unsigned {
----------------
da-viper wrote:

Could we use `StoppedReason` instead as it is too similar to `lldb::StopReason` and it is very easy to make the mistake of using the wrong enum. 

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


More information about the lldb-commits mailing list