(&self, message: &str)
| 2318 | self.match_variant(|t| matches!(t, Token::Colon)) |
| 2319 | } |
| 2320 | |
| 2321 | fn match_colon_equal(&mut self) -> bool { |
| 2322 | self.match_variant(|t| matches!(t, Token::ColonEqual)) |
| 2323 | } |
| 2324 | |
| 2325 | fn match_lparen(&mut self) -> bool { |
| 2326 | self.match_variant(|t| matches!(t, Token::LParen)) |
| 2327 | } |
| 2328 |
no test coverage detected