Index: src/property.cc |
diff --git a/src/property.cc b/src/property.cc |
index fcc718dfe75e40adee4f22ec5bfec49a270a5342..9a2765dd6b02e66e758619512d9e44fe1b12f408 100644 |
--- a/src/property.cc |
+++ b/src/property.cc |
@@ -55,14 +55,14 @@ std::ostream& operator<<(std::ostream& os, const PropertyDetails& details) { |
case FIELD: |
os << "normal: "; |
break; |
- case CONSTANT: |
- os << "constant: "; |
- break; |
case CALLBACKS: |
+ os << "callbacks: "; |
+ break; |
+ case CONSTANT: |
UNREACHABLE(); |
break; |
} |
- return os << " dictionary_index: " << details.dictionary_index() |
+ return os << "dictionary_index: " << details.dictionary_index() |
<< ", attrs: " << details.attributes() << ")"; |
} |