[Lldb-commits] [lldb] [WIP][lldb] Use forward decls with redeclared definitions instead of minimal import for records (PR #95100)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Jun 11 05:04:11 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 97cfe549c9a9ec3880c984bd4d2ddbbd92dcb9a0...2d90c9f4bf29f7de7db3df115d505db4b674649c lldb/test/API/lang/cpp/reference-to-outer-type/TestCppReferenceToOuterClass.py
``````````
</details>
<details>
<summary>
View the diff from darker here.
</summary>
``````````diff
--- TestCppReferenceToOuterClass.py 2024-06-11 10:58:48.000000 +0000
+++ TestCppReferenceToOuterClass.py 2024-06-11 12:03:33.657545 +0000
@@ -4,11 +4,13 @@
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class TestCase(TestBase):
- @expectedFailureAll(setting=('plugin.typesystem.clang.experimental-redecl-completion', 'false'))
+ @expectedFailureAll(
+ setting=("plugin.typesystem.clang.experimental-redecl-completion", "false")
+ )
def test(self):
self.build()
self.dbg.CreateTarget(self.getBuildArtifact("a.out"))
test_var = self.expect_expr("test_var", result_type="In")
nested_member = test_var.GetChildMemberWithName("NestedClassMember")
``````````
</details>
https://github.com/llvm/llvm-project/pull/95100
More information about the lldb-commits
mailing list