Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 8bced586b39dd4938495750421ef15bc3ae3c6a6..2e5719171788ec121a0ec62b2acb91ff007dcd51 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -1213,6 +1213,8 @@ MaybeObject* JSObject::AddFastPropertyUsingMap(Map* new_map, |
MaybeObject* JSObject::AddFastProperty(String* name, |
Object* value, |
PropertyAttributes attributes) { |
+ ASSERT(!IsJSGlobalProxy()); |
+ |
// Normalize the object if the name is an actual string (not the |
// hidden symbols) and is not a real identifier. |
StringInputBuffer buffer(name); |
@@ -2288,6 +2290,9 @@ MaybeObject* JSObject::NormalizeProperties(PropertyNormalizationMode mode, |
// The global object is always normalized. |
ASSERT(!IsGlobalObject()); |
+ // JSGlobalProxy must never be normalized |
+ ASSERT(!IsJSGlobalProxy()); |
+ |
// Allocate new content. |
int property_count = map()->NumberOfDescribedProperties(); |
if (expected_additional_properties > 0) { |