(&mut self)
| 58 | |
| 59 | #[inline] |
| 60 | fn next_char(&mut self) -> Option<char> { |
| 61 | self.source[self.cursor..].chars().next().inspect(|c| { |
| 62 | self.cursor += c.len_utf8(); |
| 63 | }) |
| 64 | } |
| 65 | |
| 66 | #[inline] |
| 67 | fn peek_byte(&self) -> Option<u8> { |
no test coverage detected