(&mut self)
| 97 | |
| 98 | #[inline] |
| 99 | fn next_char(&mut self) -> Option<char> { |
| 100 | self.source[self.cursor..].chars().next().inspect(|c| { |
| 101 | self.cursor += c.len_utf8(); |
| 102 | }) |
| 103 | } |
| 104 | |
| 105 | #[inline] |
| 106 | fn peek_byte(&self) -> Option<u8> { |
no test coverage detected