xref: /llvm-project/lldb/test/API/functionalities/data-formatter/varscript_formatting/helperfunc.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
1import lldb
2
3
4def f(value, d):
5    return (
6        "pointer type"
7        if value.GetType().GetTemplateArgumentType(0).IsPointerType()
8        else "non-pointer type"
9    )
10