| Index: src/contexts.cc
|
| diff --git a/src/contexts.cc b/src/contexts.cc
|
| index 7549d205182731b525d69674db7bed8e0e3cdd31..517d7ecc47cffde56d8d10975a3a3917064ccab5 100644
|
| --- a/src/contexts.cc
|
| +++ b/src/contexts.cc
|
| @@ -291,7 +291,7 @@ Handle<Object> Context::Lookup(Handle<String> name,
|
| if (name->Equals(*isolate->factory()->this_string())) {
|
| maybe = Just(ABSENT);
|
| } else {
|
| - LookupIterator it(object, name);
|
| + LookupIterator it(object, name, object);
|
| Maybe<bool> found = UnscopableLookup(&it);
|
| if (found.IsNothing()) {
|
| maybe = Nothing<PropertyAttributes>();
|
|
|