| Index: src/contexts.cc
|
| diff --git a/src/contexts.cc b/src/contexts.cc
|
| index 54cbb3e2bb4e1150e90eee4c6d62af1796fbaf32..75f82882b8206e3472d05d55d0e6032b42292064 100644
|
| --- a/src/contexts.cc
|
| +++ b/src/contexts.cc
|
| @@ -124,8 +124,7 @@ static Maybe<PropertyAttributes> UnscopableLookup(LookupIterator* it) {
|
| DCHECK(attrs.has_value || isolate->has_pending_exception());
|
| if (!attrs.has_value || attrs.value == ABSENT) return attrs;
|
|
|
| - Handle<Symbol> unscopables_symbol(
|
| - isolate->native_context()->unscopables_symbol(), isolate);
|
| + Handle<Symbol> unscopables_symbol = isolate->factory()->unscopables_symbol();
|
| Handle<Object> receiver = it->GetReceiver();
|
| Handle<Object> unscopables;
|
| MaybeHandle<Object> maybe_unscopables =
|
|
|