[Lldb-commits] [lldb] [LLDB][NativePDB] Allow type lookup in namespaces (PR #149876)
Michael Buch via lldb-commits
lldb-commits at lists.llvm.org
Tue Jul 22 02:11:23 PDT 2025
================
@@ -0,0 +1,18 @@
+b main
+r
+
+type lookup S
+type lookup ::S
+type lookup Outer::S
+type lookup Outer::Inner1::S
+type lookup Inner1::S
+type lookup Outer::Inner1::Inner2::S
+type lookup Inner2::S
+type lookup Outer::Inner2::S
+type lookup Outer::A
+type lookup A
+type lookup ::A
+expr sizeof(S)
+expr sizeof(A)
+
+quit
----------------
Michael137 wrote:
Lets put these commands into the test file itself. You can use `split-file` for this. For example: https://github.com/llvm/llvm-project/blob/81651e9fd0a744423fc0435f199ef79fb3a91f02/lldb/test/Shell/Settings/TestFrameFormatFunctionScopeObjC.test#L4
https://github.com/llvm/llvm-project/pull/149876
More information about the lldb-commits
mailing list