John Harrison
5e5f7efd77
[lldb] Expose block equality with SBBlock. ( #184222 )
...
Adding the `operator==` and `operator!=` for SBBlock. This should allow
us to compare blocks within a frame, like:
```python
block = frame.GetBlock()
while True:
if block == frame.GetFrameBlock():
# we're at the top function scope.
else:
# we're at an inner block scope.
```
2026-03-03 16:19:58 -08:00
..
2026-02-24 19:56:16 -08:00
2026-02-23 11:38:07 -08:00
2026-03-03 16:19:58 -08:00
2025-10-09 08:37:21 -07:00
2025-10-08 13:01:20 -07:00
2026-01-30 10:20:46 +00:00
2025-09-04 16:37:41 -07:00
2026-01-06 10:46:57 +00:00
2025-12-19 10:59:20 +00:00
2026-02-04 21:32:14 +00:00
2026-02-13 06:32:09 +00:00
2026-02-13 18:34:58 +05:00
2025-11-05 16:02:02 -08:00
2025-08-28 19:10:52 -07:00
2026-02-19 16:41:00 -08:00
2026-01-29 20:54:42 +01:00
2025-04-23 13:04:39 -07:00
2025-12-04 20:48:49 +00:00
2026-02-05 11:49:17 -08:00
2025-12-19 10:59:20 +00:00
2025-10-20 11:12:26 -07:00
2025-10-21 14:47:12 -07:00
2025-11-17 10:51:13 -08:00
2025-12-19 10:59:20 +00:00
2026-02-19 13:01:02 +03:00
2025-11-17 10:51:13 -08:00
2025-08-21 16:40:01 -07:00
2026-01-12 21:19:59 +00:00
2026-02-19 13:01:02 +03:00
2026-01-07 19:11:41 -03:00
2025-05-08 14:01:42 +02:00
2025-07-25 15:55:21 -07:00
2025-07-25 15:55:21 -07:00
2025-07-25 15:55:21 -07:00
2025-05-28 16:04:24 -04:00
2025-07-25 15:55:21 -07:00
2026-01-29 11:12:20 -08:00
2026-02-27 15:27:02 -08:00