(&mut self)
| 396 | } |
| 397 | |
| 398 | fn expect_ref(&mut self) -> Result<String, String> { |
| 399 | self.expect(Token::At)?; |
| 400 | self.expect_ident() |
| 401 | } |
| 402 | |
| 403 | fn expect_text_like(&mut self) -> Result<String, String> { |
| 404 | match std::mem::replace(&mut self.current, Token::Eof) { |
no test coverage detected