blob: 05a19606505eeae00406c23c9e9466accf369351 [file] [log] [blame]
Enrico Granata3f1052b2012-03-13 21:52:00 +00001"""
2LLDB AppKit formatters
3
4part of The LLVM Compiler Infrastructure
5This file is distributed under the University of Illinois Open Source
6License. See LICENSE.TXT for details.
7"""
Enrico Granata8d5c83f2012-03-02 00:55:53 +00008import lldb
9
Enrico Granata8d5c83f2012-03-02 00:55:53 +000010
Kate Stoneb9c1b512016-09-06 20:57:50 +000011def SEL_Summary(valobj, dict):
12 return valobj.Cast(valobj.GetType().GetBasicType(
13 lldb.eBasicTypeChar).GetPointerType()).GetSummary()
14
15
16def SELPointer_Summary(valobj, dict):
17 return valobj.CreateValueFromAddress(
18 'text', valobj.GetValueAsUnsigned(0), valobj.GetType().GetBasicType(
19 lldb.eBasicTypeChar)).AddressOf().GetSummary()