| Index: src/property.cc
|
| diff --git a/src/property.cc b/src/property.cc
|
| index 83a6a365b874675df7e58213f6049a23e8aef9e5..2f72eec48ec6626dd06bde01efc7007920d92d9e 100644
|
| --- a/src/property.cc
|
| +++ b/src/property.cc
|
| @@ -35,6 +35,7 @@ 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_;
|
| }
|
| }
|
| @@ -82,13 +83,13 @@ void LookupResult::Print(FILE* out) {
|
| case FIELD:
|
| PrintF(out, " -type = map transition\n");
|
| PrintF(out, " -map:\n");
|
| - GetTransitionMap()->Print(out);
|
| + GetTransitionTarget()->Print(out);
|
| PrintF(out, "\n");
|
| return;
|
| case CONSTANT:
|
| PrintF(out, " -type = constant property transition\n");
|
| PrintF(out, " -map:\n");
|
| - GetTransitionMap()->Print(out);
|
| + GetTransitionTarget()->Print(out);
|
| PrintF(out, "\n");
|
| return;
|
| case CALLBACKS:
|
|
|