Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index bde95cc6f725d0b3b9e19a30235049b4b5432dc8..13dee423200c8fa25dae6d6d5f719ee6b52df489 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -3847,8 +3847,6 @@ |
static const int kMaxNumberKeyIndex = DerivedHashTable::kPrefixStartIndex; |
static const int kNextEnumerationIndexIndex = kMaxNumberKeyIndex + 1; |
- static const bool kIsEnumerable = Shape::kIsEnumerable; |
- |
protected: |
// Generic at put operation. |
MUST_USE_RESULT static Handle<Derived> AtPut( |
@@ -9588,15 +9586,14 @@ |
static const int kFlagsOffset = kNameOffset + kPointerSize; |
static const int kSize = kFlagsOffset + kPointerSize; |
- // Flags layout. |
+ typedef FixedBodyDescriptor<kNameOffset, kFlagsOffset, kSize> BodyDescriptor; |
+ |
+ void SymbolShortPrint(std::ostream& os); |
+ |
+ private: |
static const int kPrivateBit = 0; |
static const int kWellKnownSymbolBit = 1; |
- typedef FixedBodyDescriptor<kNameOffset, kFlagsOffset, kSize> BodyDescriptor; |
- |
- void SymbolShortPrint(std::ostream& os); |
- |
- private: |
const char* PrivateSymbolToName() const; |
#if TRACE_MAPS |