| 42 | } |
| 43 | |
| 44 | Token::Token(Location loc, TokenType token_type) |
| 45 | : loc(loc), token_type_(token_type) { |
| 46 | assert(IsTokenTypeBare(token_type_)); |
| 47 | } |
| 48 | |
| 49 | Token::Token(Location loc, TokenType token_type, Type type) |
| 50 | : loc(loc), token_type_(token_type) { |
nothing calls this directly
no test coverage detected