[Lldb-commits] [lldb] [lldb][ObjC] Don't query objective-c runtime for decls in C++ contexts (PR #95963)

via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 18 11:09:00 PDT 2024


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 b650764b16b5c8790325775ac5f87f0b1c0beca7...25e64a8a622496cbde447d0d5185f0e7ef06586d lldb/test/API/lang/objcxx/objc-from-cpp-frames-without-debuginfo/TestObjCFromCppFramesWithoutDebugInfo.py
``````````

</details>

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

``````````diff
--- TestObjCFromCppFramesWithoutDebugInfo.py	2024-06-18 18:00:52.000000 +0000
+++ TestObjCFromCppFramesWithoutDebugInfo.py	2024-06-18 18:08:30.343034 +0000
@@ -18,6 +18,8 @@
 
         # Tests that we can use builtin Objective-C identifiers.
         self.expect("expr id", error=False)
 
         # Tests that we can lookup Objective-C decls in the ObjC runtime plugin.
-        self.expect_expr("NSString *c; c == nullptr", result_value="true", result_type="bool")
+        self.expect_expr(
+            "NSString *c; c == nullptr", result_value="true", result_type="bool"
+        )

``````````

</details>


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


More information about the lldb-commits mailing list