| Index: src/property.cc
|
| diff --git a/src/property.cc b/src/property.cc
|
| index dbe0afc9cab4416ff9f70e8da6d98d04d52d88f9..63837d3a92f312e07b787282981219b1dd590c7a 100644
|
| --- a/src/property.cc
|
| +++ b/src/property.cc
|
| @@ -69,9 +69,9 @@ std::ostream& operator<<(std::ostream& os,
|
| os << "immutable ";
|
| }
|
| os << (details.kind() == kData ? "data" : "accessor");
|
| + os << ": " << details.representation().Mnemonic();
|
| if (details.location() == kField) {
|
| - os << ": " << details.representation().Mnemonic()
|
| - << ", field_index: " << details.field_index();
|
| + os << ", field_index: " << details.field_index();
|
| }
|
| return os << ", p: " << details.pointer()
|
| << ", attrs: " << details.attributes() << ")";
|
|
|