| 53 | } |
| 54 | |
| 55 | inline bool IsTokenTypeString(TokenType token_type) { |
| 56 | return token_type >= TokenType::First_String && |
| 57 | token_type <= TokenType::Last_String; |
| 58 | } |
| 59 | |
| 60 | inline bool IsTokenTypeType(TokenType token_type) { |
| 61 | return token_type == TokenType::ValueType; |