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