| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 429676a6ca222ddf0c388c630d0ddf8e9d7ae97c..539d4afb01bac1da3bfd1487e9fe545503531852 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -7857,14 +7857,6 @@ MaybeObject* PolymorphicCodeCacheHashTable::Put(MapHandleList* maps,
|
| }
|
|
|
|
|
| -void FixedArray::Shrink(int new_length) {
|
| - ASSERT(new_length <= length());
|
| - if (new_length < length()) {
|
| - RightTrimFixedArray<FROM_MUTATOR>(GetHeap(), this, length() - new_length);
|
| - }
|
| -}
|
| -
|
| -
|
| MaybeObject* FixedArray::AddKeysFromJSArray(JSArray* array) {
|
| ElementsAccessor* accessor = array->GetElementsAccessor();
|
| MaybeObject* maybe_result =
|
|
|