Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 8d77d3941b52c474ffe3be6d03e530db7dfaae7a..0cfe6e0ade6ae2b521316580cc287f7b10fd7d36 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -144,7 +144,6 @@ |
// - FunctionTemplateInfo |
// - ObjectTemplateInfo |
// - Script |
-// - TypeSwitchInfo |
// - DebugInfo |
// - BreakPointInfo |
// - CodeCache |
@@ -514,7 +513,6 @@ const int kStubMinorKeyBits = kSmiValueSize - kStubMajorKeyBits - 1; |
V(CALL_HANDLER_INFO, CallHandlerInfo, call_handler_info) \ |
V(FUNCTION_TEMPLATE_INFO, FunctionTemplateInfo, function_template_info) \ |
V(OBJECT_TEMPLATE_INFO, ObjectTemplateInfo, object_template_info) \ |
- V(TYPE_SWITCH_INFO, TypeSwitchInfo, type_switch_info) \ |
V(SCRIPT, Script, script) \ |
V(ALLOCATION_SITE, AllocationSite, allocation_site) \ |
V(ALLOCATION_MEMENTO, AllocationMemento, allocation_memento) \ |
@@ -10488,21 +10486,6 @@ class ObjectTemplateInfo: public TemplateInfo { |
}; |
-class TypeSwitchInfo: public Struct { |
- public: |
- DECL_ACCESSORS(types, Object) |
- |
- DECLARE_CAST(TypeSwitchInfo) |
- |
- // Dispatched behavior. |
- DECLARE_PRINTER(TypeSwitchInfo) |
- DECLARE_VERIFIER(TypeSwitchInfo) |
- |
- static const int kTypesOffset = Struct::kHeaderSize; |
- static const int kSize = kTypesOffset + kPointerSize; |
-}; |
- |
- |
// The DebugInfo class holds additional information for a function being |
// debugged. |
class DebugInfo: public Struct { |