diff options
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index 2be1dbbafa0..4a6477f280a 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -1232,6 +1232,12 @@ ScanFormatDescriptor (const char* var_name_begin, case 'T': // if this is a 'T', print the type *val_obj_display = ValueObject::eValueObjectRepresentationStyleType; break; + case 'N': // if this is a 'N', print the name + *val_obj_display = ValueObject::eValueObjectRepresentationStyleName; + break; + case '>': // if this is a '>', print the name + *val_obj_display = ValueObject::eValueObjectRepresentationStyleExpressionPath; + break; default: if (log) log->Printf("ScanFormatDescriptor] %s is an error, leaving the previous value alone", format_name.c_str()); |