3 Commits

Author SHA1 Message Date
John Harrison
6b3f57de0a
[lldb] Skip SBBlock test on Windows. (#184818)
Skipping this test to unblock CI.
2026-03-05 08:12:19 -08:00
John Harrison
cee0703cea
[lldb] Fixing the python_api/block tests. (#184647)
Renaming the file to be unique and updating the symbols for Windows.
2026-03-04 16:03:42 -08:00
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