We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3758519 commit c2263e2Copy full SHA for c2263e2
src/etc/lldb_lookup.py
@@ -10,6 +10,9 @@ def is_hashbrown_hashmap(hash_map: lldb.SBValue) -> bool:
10
11
12
def classify_rust_type(type: lldb.SBType) -> str:
13
+ if type.IsPointerType():
14
+ type = type.GetPointeeType()
15
+
16
type_class = type.GetTypeClass()
17
if type_class == lldb.eTypeClassStruct:
18
return classify_struct(type.name, type.fields)
0 commit comments