| Index: src/ast.h | 
| diff --git a/src/ast.h b/src/ast.h | 
| index 13af3f3b1d11618390a2c05e0a8e2863f3a22834..7d131c7a014601a85f53e24c7d61ea1c20774c91 100644 | 
| --- a/src/ast.h | 
| +++ b/src/ast.h | 
| @@ -684,6 +684,8 @@ class CaseClause: public ZoneObject { | 
| // Type feedback information. | 
| void RecordTypeFeedback(TypeFeedbackOracle* oracle); | 
| bool IsSmiCompare() { return compare_type_ == SMI_ONLY; } | 
| +  bool IsSymbolCompare() { return compare_type_ == SYMBOL_ONLY; } | 
| +  bool IsStringCompare() { return compare_type_ == STRING_ONLY; } | 
| bool IsObjectCompare() { return compare_type_ == OBJECT_ONLY; } | 
|  | 
| private: | 
| @@ -691,7 +693,13 @@ class CaseClause: public ZoneObject { | 
| Label body_target_; | 
| ZoneList<Statement*>* statements_; | 
| int position_; | 
| -  enum CompareTypeFeedback { NONE, SMI_ONLY, OBJECT_ONLY }; | 
| +  enum CompareTypeFeedback { | 
| +    NONE, | 
| +    SMI_ONLY, | 
| +    SYMBOL_ONLY, | 
| +    STRING_ONLY, | 
| +    OBJECT_ONLY | 
| +  }; | 
| CompareTypeFeedback compare_type_; | 
| int compare_id_; | 
| int entry_id_; | 
|  |