Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
functionalities
/
data-formatter
/
varscript_formatting
/
helperfunc.py
blob: 81210955c7b9ec61e1cfe1d2697a542e1b1a31d0 [
file
] [
log
] [
blame
]
import
lldb
def
f
(
value
,
d
):
return
(
"pointer type"
if
value
.
GetType
().
GetTemplateArgumentType
(
0
).
IsPointerType
()
else
"non-pointer type"
)