| Index: src/lookup.h
|
| diff --git a/src/lookup.h b/src/lookup.h
|
| index b197b76971cfe302cebe0898d1eb980b9b1791a9..a2e0d4d79903def1f50889e34195413b6b34a7cb 100644
|
| --- a/src/lookup.h
|
| +++ b/src/lookup.h
|
| @@ -177,7 +177,8 @@ class LookupIterator FINAL BASE_EMBEDDED {
|
| static Configuration ComputeConfiguration(
|
| Configuration configuration, Handle<Name> name) {
|
| if (name->IsOwn()) {
|
| - return static_cast<Configuration>(configuration & HIDDEN);
|
| + return static_cast<Configuration>(configuration &
|
| + HIDDEN_SKIP_INTERCEPTOR);
|
| } else {
|
| return configuration;
|
| }
|
|
|