Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index d79f4eaf9776de65242fd6a71c9048262db222d0..ec90247ba7a92bdeafdeaf454b30d2650361e57d 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -9628,9 +9628,6 @@ class Oddball: public HeapObject { |
// [to_number]: Cached to_number computed at startup. |
DECL_ACCESSORS(to_number, Object) |
- // [to_number]: Cached to_boolean computed at startup. |
- DECL_ACCESSORS(to_boolean, Oddball) |
- |
// [typeof]: Cached type_of computed at startup. |
DECL_ACCESSORS(type_of, String) |
@@ -9648,14 +9645,13 @@ class Oddball: public HeapObject { |
// Initialize the fields. |
static void Initialize(Isolate* isolate, Handle<Oddball> oddball, |
const char* to_string, Handle<Object> to_number, |
- bool to_boolean, const char* type_of, byte kind); |
+ const char* type_of, byte kind); |
// Layout description. |
static const int kToNumberRawOffset = HeapObject::kHeaderSize; |
static const int kToStringOffset = kToNumberRawOffset + kDoubleSize; |
static const int kToNumberOffset = kToStringOffset + kPointerSize; |
- static const int kToBooleanOffset = kToNumberOffset + kPointerSize; |
- static const int kTypeOfOffset = kToBooleanOffset + kPointerSize; |
+ static const int kTypeOfOffset = kToNumberOffset + kPointerSize; |
static const int kKindOffset = kTypeOfOffset + kPointerSize; |
static const int kSize = kKindOffset + kPointerSize; |