| Index: src/stub-cache.cc
|
| diff --git a/src/stub-cache.cc b/src/stub-cache.cc
|
| index 6bf209bc0aa2089b57452067ab5ebf10fc267771..3d11dc107911ee85905580e878968139d8943dd8 100644
|
| --- a/src/stub-cache.cc
|
| +++ b/src/stub-cache.cc
|
| @@ -759,7 +759,7 @@ Handle<Code> StubCompiler::GetCodeWithFlags(Code::Flags flags,
|
| void StubCompiler::LookupPostInterceptor(Handle<JSObject> holder,
|
| Handle<Name> name,
|
| LookupResult* lookup) {
|
| - holder->LocalLookupRealNamedProperty(name, lookup);
|
| + holder->LookupOwnRealNamedProperty(name, lookup);
|
| if (lookup->IsFound()) return;
|
| if (holder->GetPrototype()->IsNull()) return;
|
| holder->GetPrototype()->Lookup(name, lookup);
|
|
|