| 90 | |
| 91 | bool HasText() const { return IsTokenTypeString(token_type_); } |
| 92 | bool HasType() const { |
| 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 |
nothing calls this directly
no test coverage detected