diff options
author | Ebuka Ezike <yerimyah1@gmail.com> | 2025-06-16 19:24:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-16 19:24:59 +0100 |
commit | 539cf824259cbb23ccc68b83ef3cde575ca50842 (patch) | |
tree | 7c1f6765899af1dc080024b9a73170664e8e4f7f /lldb/packages/Python/lldbsuite | |
parent | a3d35b87eacece8cdbb4615ff6c65003773f5cbf (diff) | |
download | llvm-539cf824259cbb23ccc68b83ef3cde575ca50842.zip llvm-539cf824259cbb23ccc68b83ef3cde575ca50842.tar.gz llvm-539cf824259cbb23ccc68b83ef3cde575ca50842.tar.bz2 |
[lldb-dap] Use structured types for stepInTargets request (#144072)
uses the `SendTargetCapabilities` from #142831
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py index 9786678a..baf2d4a 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py @@ -494,7 +494,7 @@ class DebugCommunication(object): raise ValueError("didn't get terminated event") return event_dict - def get_capability(self, key): + def get_capability(self, key: str): """Get a value for the given key if it there is a key/value pair in the capabilities reported by the adapter. """ |