| 48 | const char* GetTokenTypeName(TokenType); |
| 49 | |
| 50 | inline bool IsTokenTypeBare(TokenType token_type) { |
| 51 | return token_type >= TokenType::First_Bare && |
| 52 | token_type <= TokenType::Last_Bare; |
| 53 | } |
| 54 | |
| 55 | inline bool IsTokenTypeString(TokenType token_type) { |
| 56 | return token_type >= TokenType::First_String && |
no outgoing calls
no test coverage detected