[Lldb-commits] [lldb] [lldb] Add SBType::FindNestedType() function (PR #68705)
Vlad Serebrennikov via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 12 05:13:01 PDT 2023
================
@@ -119,6 +119,15 @@ def test(self):
self.assertEqual(task_type, task_head_pointee_type)
+ # Check whether we can find a nested type by name
+ name_type = task_type.FindNestedType("name")
+ self.assertTrue(name_type)
+ self.DebugSBType(name_type)
+
----------------
Endilll wrote:
I pushed an update. Can you take a look again?
https://github.com/llvm/llvm-project/pull/68705
More information about the lldb-commits
mailing list