| Index: src/property.cc
|
| diff --git a/src/property.cc b/src/property.cc
|
| index 2f72eec48ec6626dd06bde01efc7007920d92d9e..83a6a365b874675df7e58213f6049a23e8aef9e5 100644
|
| --- a/src/property.cc
|
| +++ b/src/property.cc
|
| @@ -35,7 +35,6 @@ void LookupResult::Iterate(ObjectVisitor* visitor) {
|
| LookupResult* current = this; // Could be NULL.
|
| while (current != NULL) {
|
| visitor->VisitPointer(BitCast<Object**>(¤t->holder_));
|
| - visitor->VisitPointer(BitCast<Object**>(¤t->transition_));
|
| current = current->next_;
|
| }
|
| }
|
| @@ -83,13 +82,13 @@ void LookupResult::Print(FILE* out) {
|
| case FIELD:
|
| PrintF(out, " -type = map transition\n");
|
| PrintF(out, " -map:\n");
|
| - GetTransitionTarget()->Print(out);
|
| + GetTransitionMap()->Print(out);
|
| PrintF(out, "\n");
|
| return;
|
| case CONSTANT:
|
| PrintF(out, " -type = constant property transition\n");
|
| PrintF(out, " -map:\n");
|
| - GetTransitionTarget()->Print(out);
|
| + GetTransitionMap()->Print(out);
|
| PrintF(out, "\n");
|
| return;
|
| case CALLBACKS:
|
|
|