Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Unified Diff: src/lookup.h

Issue 2405213002: V8 support for cached accessors. (Closed)
Patch Set: Centralized lookup in LookupIterator::TryLookupCacheProperty. Also rebase. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/lookup.h
diff --git a/src/lookup.h b/src/lookup.h
index 4f025a32bce0d45c19263f54cbe624a3adc58b29..742d2fe0589de9866d475e280224085ea2309a23 100644
--- a/src/lookup.h
+++ b/src/lookup.h
@@ -262,6 +262,10 @@ class V8_EXPORT_PRIVATE LookupIterator final BASE_EMBEDDED {
}
}
+ // Lookup a 'cached' private property for an accessor.
+ // If not found returns false and leaves the LookupIterator unmodified.
+ bool TryLookupCacheProperty();
Toon Verwaest 2016/10/21 08:22:14 TryLookupCache*d*Property
vogelheim 2016/11/03 16:12:24 Done.
+
private:
void InternalUpdateProtector();

Powered by Google App Engine
This is Rietveld 408576698