[Lldb-commits] [lldb] [lldb-dap] Add module symbol table viewer to VS Code extension #140626 (PR #153836)

via lldb-commits lldb-commits at lists.llvm.org
Sat Aug 16 16:20:51 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r HEAD~1...HEAD lldb/test/API/tools/lldb-dap/moduleSymbols/TestDAP_moduleSymbols.py lldb/packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py
``````````

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py	2025-08-16 23:17:04.000000 +0000
+++ packages/Python/lldbsuite/test/tools/lldb-dap/dap_server.py	2025-08-16 23:20:07.495131 +0000
@@ -1197,11 +1197,17 @@
                 "type": "request",
                 "arguments": {"startModule": startModule, "moduleCount": moduleCount},
             }
         )
 
-    def request_moduleSymbols(self, moduleId: str = "", moduleName: str = "", startIndex: int = 0, count: int = 0):
+    def request_moduleSymbols(
+        self,
+        moduleId: str = "",
+        moduleName: str = "",
+        startIndex: int = 0,
+        count: int = 0,
+    ):
         command_dict = {
             "command": "moduleSymbols",
             "type": "request",
             "arguments": {
                 "moduleId": moduleId,

``````````

</details>


https://github.com/llvm/llvm-project/pull/153836


More information about the lldb-commits mailing list