Chromium Code Reviews| Index: src/lookup.cc |
| diff --git a/src/lookup.cc b/src/lookup.cc |
| index eb79ba190f463f42b8ef0a449c6d376f136bc09f..727ffd608a34a8fd6d547c13680db7d80988e656 100644 |
| --- a/src/lookup.cc |
| +++ b/src/lookup.cc |
| @@ -80,13 +80,13 @@ void LookupIterator::Next() { |
| } |
| -void LookupIterator::RestartLookupForNonMaskingInterceptors() { |
| - interceptor_state_ = InterceptorState::kProcessNonMasking; |
| +void LookupIterator::RestartInternal(InterceptorState interceptor_state) { |
| state_ = NOT_FOUND; |
| + interceptor_state_ = interceptor_state; |
| property_details_ = PropertyDetails::Empty(); |
| - number_ = DescriptorArray::kNotFound; |
| holder_ = initial_holder_; |
| holder_map_ = handle(holder_->map(), isolate_); |
| + number_ = DescriptorArray::kNotFound; |
|
Jakob Kummerow
2015/10/22 15:33:25
Reordered to match the initialization order in the
|
| Next(); |
| } |