[Lldb-commits] [lldb] [lldb] Implement basic support for reverse-continue (PR #99736)

via lldb-commits lldb-commits at lists.llvm.org
Mon Sep 23 14:24:24 PDT 2024


================
@@ -3169,6 +3176,7 @@ void PruneThreadPlans();
                            // m_currently_handling_do_on_removals are true,
                            // Resume will only request a resume, using this
                            // flag to check.
+  lldb::RunDirection m_last_run_direction;
----------------
jimingham wrote:

This should have a doc string.  I've been trying not to make classes that default initialize some ivars in the class declaration and some in the constructors.  That just seems super confusing to me.  So I personally wouldn't initialize this one here, or I'd go fix all the ones we always initialize the same way in the constructors.  But that's a matter of taste.

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


More information about the lldb-commits mailing list