Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index 9289900675cf1cb89a4457e1f5a9dfe2b145fefb..33000b668eb0b7012913c3bb296666b0c52ff2e6 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -3052,27 +3052,6 @@ void DescriptorArray::Set(int descriptor_number, Descriptor* desc) { |
} |
-void DescriptorArray::Append(Descriptor* desc, |
- const WhitenessWitness& witness) { |
- DisallowHeapAllocation no_gc; |
- int descriptor_number = number_of_descriptors(); |
- SetNumberOfDescriptors(descriptor_number + 1); |
- Set(descriptor_number, desc, witness); |
- |
- uint32_t hash = desc->GetKey()->Hash(); |
- |
- int insertion; |
- |
- for (insertion = descriptor_number; insertion > 0; --insertion) { |
- Name* key = GetSortedKey(insertion - 1); |
- if (key->Hash() <= hash) break; |
- SetSortedKey(insertion, GetSortedKeyIndex(insertion - 1)); |
- } |
- |
- SetSortedKey(insertion, descriptor_number); |
-} |
- |
- |
void DescriptorArray::Append(Descriptor* desc) { |
DisallowHeapAllocation no_gc; |
int descriptor_number = number_of_descriptors(); |