Read any other single character.
(&mut self)
| 497 | |
| 498 | /// Read any other single character. |
| 499 | fn read_other(&mut self) -> Token<'a> { |
| 500 | let start = self.position; |
| 501 | self.advance(); |
| 502 | Token::new(&self.content[start..self.position], TokenKind::Other, start) |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | impl<'a> Iterator for Tokenizer<'a> { |