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

Unified Diff: src/property.h

Issue 14850006: Use mutable heapnumbers to store doubles in fields. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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
Index: src/property.h
diff --git a/src/property.h b/src/property.h
index 229241948a8c4ee0dc253e199bdbd1710fdb8159..6a4d09c861a85a25357b7a183e569836552462cc 100644
--- a/src/property.h
+++ b/src/property.h
@@ -268,6 +268,8 @@ class LookupResult BASE_EMBEDDED {
Representation representation() {
ASSERT(IsFound());
+ ASSERT(!IsTransition());
+ ASSERT(details_.type() != NONEXISTENT);
return details_.representation();
}

Powered by Google App Engine
This is Rietveld 408576698