Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 89d28099f69cf6595b364a4948e82057a7ea9b95..28eb4f3096412d59fc276b75327199793a32072a 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -2569,6 +2569,9 @@ class DescriptorArray: public FixedArray { |
// If adding a real property, map transitions must be removed. If adding |
// a transition, they must not be removed. All null descriptors are removed. |
MUST_USE_RESULT MaybeObject* CopyInsert(Descriptor* descriptor); |
+ MUST_USE_RESULT MaybeObject* CopyAdd(Descriptor* descriptor); |
+ MUST_USE_RESULT MaybeObject* CopyReplace(Descriptor* descriptor, |
+ int insertion_index); |
// Indicates whether the search function should expect a sorted or an unsorted |
// descriptor array as input. |