Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index a697a77690d7f0350cee1dcd2e85a8a73b9e83c7..5e9e154ff23ceabe7f2ba8f5b7972745ae2db2a7 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -2986,10 +2986,6 @@ MaybeHandle<Object> Object::AddDataProperty(LookupIterator* it, |
// instead. If the prototype is Null, the proxy is detached. |
if (receiver->IsJSGlobalProxy()) return value; |
- // If the receiver is Indexed Exotic object (currently only typed arrays), |
- // disallow adding properties with numeric names. |
- if (it->IsSpecialNumericIndex()) return value; |
- |
// Possibly migrate to the most up-to-date map that will be able to store |
// |value| under it->name() with |attributes|. |
it->PrepareTransitionToDataProperty(value, attributes, store_mode); |