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