| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index 1dde60df546fc85ec110f2a5f5ef47381589dd99..8b565b364546777006372adcdd1ef894ed15cc3c 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -2192,6 +2192,14 @@ bool JSObject::HasFastProperties() {
|
| }
|
|
|
|
|
| +MaybeHandle<Object> JSObject::SetOwnElement(Handle<JSObject> object,
|
| + uint32_t index,
|
| + Handle<Object> value,
|
| + StrictMode strict_mode) {
|
| + return JSObject::SetOwnElement(object, index, value, NONE, strict_mode);
|
| +}
|
| +
|
| +
|
| bool Map::TooManyFastProperties(StoreFromKeyed store_mode) {
|
| if (unused_property_fields() != 0) return false;
|
| if (is_prototype_map()) return false;
|
|
|