diff options
author | Fedor Indutny <fedor.indutny@gmail.com> | 2013-09-18 20:33:28 +0400 |
---|---|---|
committer | Fedor Indutny <fedor.indutny@gmail.com> | 2013-09-18 20:33:28 +0400 |
commit | a1cf3ada624b90673ac6bd53ec38a3d27fecbd01 (patch) | |
tree | 3ac25b67a7482c137e629475eb67114d4966e34a /deps/v8/src/objects.cc | |
parent | 59a075e108c7ffcee87252255e60530cd15a8adb (diff) | |
download | node-new-a1cf3ada624b90673ac6bd53ec38a3d27fecbd01.tar.gz |
deps: update v8 to 3.20.17.7
Diffstat (limited to 'deps/v8/src/objects.cc')
-rw-r--r-- | deps/v8/src/objects.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/deps/v8/src/objects.cc b/deps/v8/src/objects.cc index 995ed36f02..23eac77f7f 100644 --- a/deps/v8/src/objects.cc +++ b/deps/v8/src/objects.cc @@ -3909,9 +3909,9 @@ MaybeObject* JSObject::SetPropertyForResult(LookupResult* lookup, lookup->holder()->MigrateToMap(Map::cast(back)); if (maybe_failure->IsFailure()) return maybe_failure; } - DescriptorArray* desc = transition_map->instance_descriptors(); - int descriptor = transition_map->LastAdded(); - representation = desc->GetDetails(descriptor).representation(); + descriptors = transition_map->instance_descriptors(); + representation = + descriptors->GetDetails(descriptor).representation(); } int field_index = descriptors->GetFieldIndex(descriptor); result = lookup->holder()->AddFastPropertyUsingMap( @@ -4117,9 +4117,9 @@ MaybeObject* JSObject::SetLocalPropertyIgnoreAttributes( MaybeObject* maybe_failure = self->MigrateToMap(Map::cast(back)); if (maybe_failure->IsFailure()) return maybe_failure; } - DescriptorArray* desc = transition_map->instance_descriptors(); - int descriptor = transition_map->LastAdded(); - representation = desc->GetDetails(descriptor).representation(); + descriptors = transition_map->instance_descriptors(); + representation = + descriptors->GetDetails(descriptor).representation(); } int field_index = descriptors->GetFieldIndex(descriptor); result = self->AddFastPropertyUsingMap( |