Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index d7d4dfa4e242968d2ba95c5fda2344e8eaae4eff..9e104d5b0b18c573c4c36c65058492f84a160d7c 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -3038,6 +3038,7 @@ class DescriptorArray: public FixedArray { |
static const int kDescriptorDetails = 1; |
static const int kDescriptorValue = 2; |
static const int kDescriptorSize = 3; |
+ static const int kEntrySize = kDescriptorSize; |
#if defined(DEBUG) || defined(OBJECT_PRINT) |
// For our gdb macros, we should perhaps change these in the future. |
@@ -8572,10 +8573,7 @@ class Name: public HeapObject { |
// If the name is private, it can only name own properties. |
inline bool IsPrivate(); |
- // If the name is a non-flat string, this method returns a flat version of the |
- // string. Otherwise it'll just return the input. |
- static inline Handle<Name> Flatten(Handle<Name> name, |
- PretenureFlag pretenure = NOT_TENURED); |
+ inline bool IsUniqueName() const; |
// Return a string version of this name that is converted according to the |
// rules described in ES6 section 9.2.11. |