| 298 | // clang-format on |
| 299 | |
| 300 | std::string Parser::TokenToStringId(int t) const { |
| 301 | return t == kTokenIdentifier ? attribute_ : TokenToString(t); |
| 302 | } |
| 303 | |
| 304 | // Parses exactly nibbles worth of hex digits into a number, or error. |
| 305 | CheckedError Parser::ParseHexNum(int nibbles, uint64_t *val) { |
nothing calls this directly
no test coverage detected