| Index: src/property.cc
|
| diff --git a/src/property.cc b/src/property.cc
|
| index 0cad6ed02c56df1f32eaf077045ade0c67f66185..efb58a28c789bf297e5f23b10a8c10bfc51cee92 100644
|
| --- a/src/property.cc
|
| +++ b/src/property.cc
|
| @@ -24,30 +24,9 @@ OStream& operator<<(OStream& os, const LookupResult& r) {
|
| if (!r.IsFound()) return os << "Not Found\n";
|
|
|
| os << "LookupResult:\n";
|
| - os << " -cacheable = " << (r.IsCacheable() ? "true" : "false") << "\n";
|
| - os << " -attributes = " << hex << r.GetAttributes() << dec << "\n";
|
| if (r.IsTransition()) {
|
| os << " -transition target:\n" << Brief(r.GetTransitionTarget()) << "\n";
|
| }
|
| - switch (r.type()) {
|
| - case NORMAL:
|
| - return os << " -type = normal\n"
|
| - << " -entry = " << r.GetDictionaryEntry() << "\n";
|
| - case CONSTANT:
|
| - return os << " -type = constant\n";
|
| - case FIELD:
|
| - os << " -type = field\n"
|
| - << " -index = " << r.GetFieldIndex().property_index() << "\n"
|
| - << " -field type:";
|
| - r.GetFieldType()->PrintTo(os);
|
| - return os << "\n";
|
| - case CALLBACKS:
|
| - return os << " -type = call backs\n";
|
| - case HANDLER:
|
| - return os << " -type = lookup proxy\n";
|
| - case INTERCEPTOR:
|
| - return os << " -type = lookup interceptor\n";
|
| - }
|
| return os;
|
| }
|
|
|
|
|