| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index fdc5102049fcc2fd7b9119c9824218203af77053..4f7a2ee3c0246ad24fffb26e4e13d6167ffcafda 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -4006,7 +4006,8 @@ bool JSObject::HasIndexedInterceptor() {
|
|
|
|
|
| bool JSObject::AllowsSetElementsLength() {
|
| - bool result = elements()->IsFixedArray();
|
| + bool result = elements()->IsFixedArray() ||
|
| + elements()->IsFixedDoubleArray();
|
| ASSERT(result == !HasExternalArrayElements());
|
| return result;
|
| }
|
|
|