Chromium Code Reviews

Unified Diff: src/lookup.h

Issue 768633002: Add infrastructure to keep track of references to prototypes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comments Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/isolate.cc ('k') | src/lookup.cc » ('j') | src/objects.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lookup.h
diff --git a/src/lookup.h b/src/lookup.h
index a78bb5d91d658cd7d1e04c709d5c0fe9f731cf61..4108a49aad43dcb5dc31964660c5ca552d167540 100644
--- a/src/lookup.h
+++ b/src/lookup.h
@@ -175,7 +175,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;
}
« no previous file with comments | « src/isolate.cc ('k') | src/lookup.cc » ('j') | src/objects.h » ('J')

Powered by Google App Engine