Index: src/property.h |
diff --git a/src/property.h b/src/property.h |
index 857f907343752788d27230b9f81ad3b47c254bf4..ee2e8c844eaf29c6b8441f1eab0376b85bbffcc5 100644 |
--- a/src/property.h |
+++ b/src/property.h |
@@ -115,11 +115,9 @@ class MapTransitionDescriptor: public Descriptor { |
class ElementsTransitionDescriptor: public Descriptor { |
public: |
ElementsTransitionDescriptor(String* key, |
- Map* map, |
- ElementsKind elements_kind) |
- : Descriptor(key, map, PropertyDetails(NONE, |
- ELEMENTS_TRANSITION, |
- elements_kind)) { } |
+ Object* map_or_array) |
+ : Descriptor(key, map_or_array, PropertyDetails(NONE, |
+ ELEMENTS_TRANSITION)) { } |
}; |
// Marks a field name in a map so that adding the field is guaranteed |