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

Unified Diff: src/property.h

Issue 12213012: Split AccessorInfo into DeclaredAccessorInfo and ExecutableAccessorInfo (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 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/property.h
diff --git a/src/property.h b/src/property.h
index 1cadd57b30dfbe9b40bc93278672502305eb9a2e..e8b26bce94ef378a95241562fff49d0a510560e2 100644
--- a/src/property.h
+++ b/src/property.h
@@ -318,7 +318,7 @@ class LookupResult BASE_EMBEDDED {
return true;
case CALLBACKS: {
Object* callback = GetCallbackObject();
- return callback->IsAccessorInfo() || callback->IsForeign();
+ return callback->IsExecutableAccessorInfo() || callback->IsForeign();
Sven Panne 2013/02/07 10:01:03 Shouldn't the DescriptorAccessorInfos be data prop
}
case HANDLER:
case INTERCEPTOR:

Powered by Google App Engine
This is Rietveld 408576698