| 93 | return IsTokenTypeType(token_type_) || IsTokenTypeRefKind(token_type_); |
| 94 | } |
| 95 | bool HasOpcode() const { return IsTokenTypeOpcode(token_type_); } |
| 96 | bool HasLiteral() const { return IsTokenTypeLiteral(token_type_); } |
| 97 | |
| 98 | std::string_view text() const { |
nothing calls this directly
no test coverage detected