diff options
author | Jason Molenda <jmolenda@apple.com> | 2016-07-20 03:49:02 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2016-07-20 03:49:02 +0000 |
commit | d9c9da536f0df0efa4dfd95e1797c0edc1950589 (patch) | |
tree | f69ee6d0cd9556d8d94f65d3f5b222a594e84923 /lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | |
parent | 074f8d7777c9eb13489982ecbfff198248f5ad57 (diff) | |
download | bcm5719-llvm-d9c9da536f0df0efa4dfd95e1797c0edc1950589.tar.gz bcm5719-llvm-d9c9da536f0df0efa4dfd95e1797c0edc1950589.zip |
Add a default-value bool flag pretty_print to the StructuredData Dump methods.
They will dump pretty-print (indentation, extra whitepsace) by default.
I'll make a change to ProcessGDBRemote soon so it stops sending JSON strings
to debugserver pretty-printed; it's unnecessary extra bytes being sent between
the two.
llvm-svn: 276079
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h index 78245a98d0b..fd77a34750f 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h @@ -60,7 +60,7 @@ public: return GetValue() && GetValue() != Py_None; } - void Dump(Stream &s) const override; + void Dump(Stream &s, bool pretty_print = true) const override; private: DISALLOW_COPY_AND_ASSIGN(StructuredPythonObject); |