Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: src/property.cc

Issue 755583003: Dictionary-mode PropertyDetails printing fixed. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() << ")";
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698