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

Unified Diff: src/property.h

Issue 9233006: Removed IsPropertyOrTransition method. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 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 | « src/ic.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/property.h
diff --git a/src/property.h b/src/property.h
index 3203dd1120a4168102f72e1e75a3d47d5429fc42..120734df9fc4e535b77e7a803700aef253fd7faa 100644
--- a/src/property.h
+++ b/src/property.h
@@ -265,11 +265,6 @@ class LookupResult BASE_EMBEDDED {
return IsFound() && GetPropertyDetails().IsProperty();
}
- // Is the result a property or a transition?
- bool IsPropertyOrTransition() {
- return IsFound() && (type() != NULL_DESCRIPTOR);
- }
-
bool IsCacheable() { return cacheable_; }
void DisallowCaching() { cacheable_ = false; }
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698