diff options
author | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2025-08-22 07:43:46 +0000 |
---|---|---|
committer | Muhammad Omair Javaid <omair.javaid@linaro.org> | 2025-08-22 13:02:52 +0500 |
commit | 2b8e80694263fb404d1d0b816f33df731e617625 (patch) | |
tree | 91fdbd99457eea15dbcbb13c56ab39ed2dc43254 /lldb/packages/Python/lldbsuite/test | |
parent | 149d9a38e165f66a9c784060f138e55e0a1c1686 (diff) | |
download | llvm-2b8e80694263fb404d1d0b816f33df731e617625.zip llvm-2b8e80694263fb404d1d0b816f33df731e617625.tar.gz llvm-2b8e80694263fb404d1d0b816f33df731e617625.tar.bz2 |
Revert "[lldb-dap] Add module symbol table viewer to VS Code extension #140626 (#153836)"
This reverts commit 8b64cd8be29da9ea74db5a1a21f7cd6e75f9e9d8.
This breaks lldb-aarch64-* bots causing a crash in lldb-dap while
running test TestDAP_moduleSymbols.py
https://lab.llvm.org/buildbot/#/builders/59/builds/22959
https://lab.llvm.org/buildbot/#/builders/141/builds/10975
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py | 19 |
1 files changed, 0 insertions, 19 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 0608ac3..311c9f0 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 @@ -1299,25 +1299,6 @@ class DebugCommunication(object): {"command": "modules", "type": "request", "arguments": args_dict} ) - def request_moduleSymbols( - self, - moduleId: str = "", - moduleName: str = "", - startIndex: int = 0, - count: int = 0, - ): - command_dict = { - "command": "__lldb_moduleSymbols", - "type": "request", - "arguments": { - "moduleId": moduleId, - "moduleName": moduleName, - "startIndex": startIndex, - "count": count, - }, - } - return self._send_recv(command_dict) - def request_stackTrace( self, threadId=None, startFrame=None, levels=None, format=None, dump=False ): |