Commit d8a56168 authored by ishell's avatar ishell Committed by Commit bot

Dictionary-mode PropertyDetails printing fixed.

BUG=chromium:435974
LOG=N

Review URL: https://codereview.chromium.org/755583003

Cr-Commit-Position: refs/heads/master@{#25484}
parent 1f5f0889
......@@ -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() << ")";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment