2012-03-14 05:52:00 +08:00
|
|
|
"""
|
|
|
|
LLDB AppKit formatters
|
|
|
|
|
2019-01-19 16:50:56 +08:00
|
|
|
Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-03-14 05:52:00 +08:00
|
|
|
"""
|
2012-03-02 08:55:53 +08:00
|
|
|
import lldb
|
|
|
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
def SEL_Summary(valobj, dict):
|
|
|
|
return valobj.Cast(valobj.GetType().GetBasicType(
|
|
|
|
lldb.eBasicTypeChar).GetPointerType()).GetSummary()
|
|
|
|
|
|
|
|
|
|
|
|
def SELPointer_Summary(valobj, dict):
|
|
|
|
return valobj.CreateValueFromAddress(
|
|
|
|
'text', valobj.GetValueAsUnsigned(0), valobj.GetType().GetBasicType(
|
|
|
|
lldb.eBasicTypeChar)).AddressOf().GetSummary()
|