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

Unified Diff: src/objects.h

Issue 309653003: Clean up (Get|Set)Property(Attributes)WithFailedAccessChecks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comment Created 6 years, 7 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.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 401ce404ac31d06e275a0fa7eaa5e57b883ff5b7..038ead43463e712761c677e5bfb109637a8f3a44 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -2222,22 +2222,22 @@ class JSObject: public JSReceiver {
Handle<JSObject> object,
Handle<JSObject> receiver,
Handle<Name> name,
- bool continue_search);
+ bool check_prototype);
static PropertyAttributes GetPropertyAttributeWithInterceptor(
Handle<JSObject> object,
Handle<JSObject> receiver,
Handle<Name> name,
- bool continue_search);
+ bool check_prototype);
static PropertyAttributes GetPropertyAttributeWithFailedAccessCheck(
Handle<JSObject> object,
LookupResult* result,
Handle<Name> name,
- bool continue_search);
+ bool check_prototype);
static PropertyAttributes GetElementAttributeWithReceiver(
Handle<JSObject> object,
Handle<JSReceiver> receiver,
uint32_t index,
- bool continue_search);
+ bool check_prototype);
// Retrieves an AccessorPair property from the given object. Might return
// undefined if the property doesn't exist or is of a different kind.
« no previous file with comments | « no previous file | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698