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

Unified Diff: src/lookup.h

Issue 468163002: Use LookupIterator in SetAccessor / DefineAccessor and remove "search_hidden_prototypes" from Looku… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | src/objects.h » ('j') | no next file with comments »
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 7727ca57dc083289f361a27fcbc4acf81480bd45..53f1a686828fd0c2d035a4164c8e2668ec4b2063 100644
--- a/src/lookup.h
+++ b/src/lookup.h
@@ -143,6 +143,7 @@ class LookupIterator V8_FINAL BASE_EMBEDDED {
return property_details_;
}
bool IsConfigurable() const { return !property_details().IsDontDelete(); }
+ bool IsReadOnly() const { return property_details().IsReadOnly(); }
Jakob Kummerow 2014/08/18 15:00:18 Yeah, I'm adding that accessor in my work-in-progr
Representation representation() const {
return property_details().representation();
}
« no previous file with comments | « no previous file | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698