| 62 | } |
| 63 | |
| 64 | inline bool IsTokenTypeOpcode(TokenType token_type) { |
| 65 | return token_type >= TokenType::First_Opcode && |
| 66 | token_type <= TokenType::Last_Opcode; |
| 67 | } |
| 68 | |
| 69 | inline bool IsTokenTypeLiteral(TokenType token_type) { |
| 70 | return token_type >= TokenType::First_Literal && |
no outgoing calls
no test coverage detected