prettyPrint -> shouldPrettyPrint

(cherry picked from commit 1c5f5d4291df7bf80806e57c75d2ec67bced8616)
Change-Id: I7a517490e7baa5cef00716f6d6cfcbcbcdde11bf
This commit is contained in:
eldritch horrors
2024-03-09 07:20:23 -07:00
parent 4dabde0485
commit 73cdaf44cf
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ struct PrintOptions
/**
* True if pretty-printing is enabled.
*/
inline bool prettyPrint()
inline bool shouldPrettyPrint()
{
return prettyIndent > 0;
}
+4 -4
View File
@@ -166,14 +166,14 @@ private:
void increaseIndent()
{
if (options.prettyPrint()) {
if (options.shouldPrettyPrint()) {
indent.append(options.prettyIndent, ' ');
}
}
void decreaseIndent()
{
if (options.prettyPrint()) {
if (options.shouldPrettyPrint()) {
assert(indent.size() >= options.prettyIndent);
indent.resize(indent.size() - options.prettyIndent);
}
@@ -277,7 +277,7 @@ private:
bool shouldPrettyPrintAttrs(AttrVec & v)
{
if (!options.prettyPrint() || v.empty()) {
if (!options.shouldPrettyPrint() || v.empty()) {
return false;
}
@@ -354,7 +354,7 @@ private:
bool shouldPrettyPrintList(std::span<Value * const> list)
{
if (!options.prettyPrint() || list.empty()) {
if (!options.shouldPrettyPrint() || list.empty()) {
return false;
}