Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 0dc5e3a22f5d2b732c8557c81b395ab72dd962e4..97f81cbc2c8ac3fe92fecab95d1affd337f996d0 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -8643,10 +8643,14 @@ class Symbol: public Name { |
typedef FixedBodyDescriptor<kNameOffset, kFlagsOffset, kSize> BodyDescriptor; |
+ void SymbolShortPrint(std::ostream& os); |
+ |
private: |
static const int kPrivateBit = 0; |
static const int kOwnBit = 1; |
+ const char* PrivateSymbolToName() const; |
+ |
DISALLOW_IMPLICIT_CONSTRUCTORS(Symbol); |
}; |