[Lldb-commits] [lldb] [llvm] [lldb-dap] Support column breakpoints (PR #113787)

Walter Erquinigo via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 30 10:19:09 PDT 2024


================
@@ -281,12 +270,11 @@ def test_clear_breakpoints_unset_breakpoints(self):
         self.assertEqual(
             len(breakpoints), len(lines), "expect %u source breakpoints" % (len(lines))
         )
-        for breakpoint, index in zip(breakpoints, range(len(lines))):
+        for index, breakpoint in enumerate(breakpoints):
----------------
walter-erquinigo wrote:

+1

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


More information about the lldb-commits mailing list