| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index a659ead158ec85a7729ad153089343d9764c752f..d4f1bb4cc87681e0e3cca25151aa08c59973450e 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -7118,10 +7118,6 @@
|
| // [name]: The print name of a symbol, or undefined if none.
|
| DECL_ACCESSORS(name, Object)
|
|
|
| - // [descriptive_string]: The descriptive string of a symbol. This is the
|
| - // value returned from the Symbol.prototype.toString method.
|
| - DECL_ACCESSORS(descriptive_string, String)
|
| -
|
| DECL_INT_ACCESSORS(flags)
|
|
|
| // [is_private]: Whether this is a private symbol. Private symbols can only
|
| @@ -7145,8 +7141,7 @@
|
|
|
| // Layout description.
|
| static const int kNameOffset = Name::kSize;
|
| - static const int kDescriptiveStringOffset = kNameOffset + kPointerSize;
|
| - static const int kFlagsOffset = kDescriptiveStringOffset + kPointerSize;
|
| + static const int kFlagsOffset = kNameOffset + kPointerSize;
|
| static const int kSize = kFlagsOffset + kPointerSize;
|
|
|
| // Flags layout.
|
|
|