Reviewers: Jakob,

Message:
ptal.
Hopefully the try-jobs cycle green now ...

Description:
Remove temporary hack re deleting hidden properties

BUG=

Please review this at https://codereview.chromium.org/1222223002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+0, -8 lines):
  M src/objects.cc


Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index e53df91d0ba67f99ba9bb1f422a4b68ff9fed72d..1d829af047cdd68761bef5c90471b6522c9b6a17 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -5231,14 +5231,6 @@ MaybeHandle<Object> JSReceiver::DeleteProperty(LookupIterator* it,
           return it->factory()->false_value();
         }

-        Handle<JSObject> holder = it->GetHolder<JSObject>();
- // TODO(verwaest): Remove this temporary compatibility hack when blink
-        // tests are updated.
-        if (!holder.is_identical_to(receiver) &&
-            !(receiver->IsJSGlobalProxy() && holder->IsJSGlobalObject())) {
-          return it->factory()->true_value();
-        }
-
         it->Delete();

         if (is_observed) {


--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to