Failed to apply patch for src/lookup.cc:
While running git apply --index -3 -p1;
  error: patch failed: src/lookup.cc:311
  Falling back to three-way merge...
  Applied patch to 'src/lookup.cc' with conflicts.
  U src/lookup.cc

Patch:       src/lookup.cc
Index: src/lookup.cc
diff --git a/src/lookup.cc b/src/lookup.cc
index
2b69aa67959f957a0fc283a6b4d30892257ec081..e5eecce234116e1098c8bd23e5c2fdc6fc1bb9d0
100644
--- a/src/lookup.cc
+++ b/src/lookup.cc
@@ -256,7 +256,6 @@
   if (holder_map_->is_dictionary_map()) {
     result = holder->property_dictionary()->ValueAt(number_);
     if (holder_map_->IsGlobalObjectMap()) {
-      DCHECK(result->IsPropertyCell());
       result = PropertyCell::cast(result)->value();
     }
   } else if (property_details_.type() == v8::internal::DATA) {
@@ -311,7 +310,6 @@
   Handle<JSObject> holder = GetHolder<JSObject>();
   Handle<GlobalObject> global = Handle<GlobalObject>::cast(holder);
Object* value = global->property_dictionary()->ValueAt(dictionary_entry());
-  DCHECK(value->IsPropertyCell());
   return Handle<PropertyCell>(PropertyCell::cast(value));
 }



https://codereview.chromium.org/1021163002/

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to