forked from OSchip/llvm-project
16 lines
1.4 KiB
Plaintext
16 lines
1.4 KiB
Plaintext
type summary add -w lldb lldb_private::Error -s "Type: ${var.m_type%E}, Code: ${var.m_code}, Message: ${var.m_string}"
|
|
type summary add -w lldb lldb_private::ConstString -s "${var.m_string}"
|
|
type summary add -w lldb lldb_private::Language -s "${var.m_language%E}"
|
|
type summary add -w lldb lldb_private::RegularExpression -s "${var.m_re}"
|
|
type summary add -w lldb lldb_private::UserID -s "UserID(${var.m_uid})"
|
|
type summary add -w lldb lldb_private::ValueObject -s "${var.m_name}"
|
|
type summary add -w lldb lldb_private::ValueObjectSP -s "${var.ptr_.m_name}"
|
|
type summary add -w lldb lldb_private::ValueObjectRegister -s "${var.m_reg_info.name}"
|
|
type summary add -w lldb lldb_private::ClangExpression -s "{${var.m_expr_text}}"
|
|
type summary add -w lldb lldb_private::CommandObject -s "Command name: ${var.m_cmd_name}"
|
|
type summary add -w lldb lldb_private::Variable -s "${var.m_type.m_name} ${var.m_name}"
|
|
type summary add -w lldb lldb_private::StopInfo -s "ID: ${var.m_stop_id}, ${var.m_description}"
|
|
type summary add -w lldb lldb_private::FileSpec -s "file: ${var.m_filename} dir: ${var.m_directory}"
|
|
type summary add -w lldb -v lldb::ConnectionStatus -s "[enum=${var%E} val=${var%i}]"
|
|
# Where '-v' tells type summary not to show the value itself, but just use the summary format.
|