diff options
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 ): |