Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index a8fac8c8ff4e64134ab54d435192cdab55f3bb79..8993728a0ba86431ddddccfefe70b5a38d2e06af 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -2050,6 +2050,7 @@ class FixedArrayBase: public HeapObject { |
static const int kHeaderSize = kLengthOffset + kPointerSize; |
}; |
+class FixedDoubleArray; |
// FixedArray describes fixed-sized arrays with element type Object*. |
class FixedArray: public FixedArrayBase { |
@@ -2092,6 +2093,10 @@ class FixedArray: public FixedArrayBase { |
// Compute the union of this and other. |
MUST_USE_RESULT MaybeObject* UnionOfKeys(FixedArray* other); |
+ // Compute the union of this and other. |
+ MUST_USE_RESULT MaybeObject* UnionOfDoubleKeys( |
+ FixedDoubleArray* other); |
+ |
// Copy a sub array from the receiver to dest. |
void CopyTo(int pos, FixedArray* dest, int dest_pos, int len); |