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

Unified Diff: src/objects.cc

Issue 597893002: Version 3.28.71.12 (merged r24125) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.28
Patch Set: move check to SetNormalizedProperty Created 6 years, 3 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/json-parser.h ('k') | src/version.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index 75b5860f8ef63bf9d45f9b0f917b0f6702b38c04..a994718bd079007a3af15c4b7fa7577547672f2a 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -693,7 +693,7 @@ void JSObject::SetNormalizedProperty(Handle<JSObject> object,
Handle<Name> name,
Handle<Object> value,
PropertyDetails details) {
- DCHECK(!object->HasFastProperties());
+ CHECK(!object->HasFastProperties());
Handle<NameDictionary> property_dictionary(object->property_dictionary());
if (!name->IsUniqueName()) {
« no previous file with comments | « src/json-parser.h ('k') | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698