(&mut self)
| 143 | |
| 144 | #[inline] |
| 145 | fn next_char(&mut self) -> Option<char> { |
| 146 | self.source[self.cursor..].chars().next().inspect(|c| { |
| 147 | self.cursor += c.len_utf8(); |
| 148 | }) |
| 149 | } |
| 150 | |
| 151 | #[inline] |
| 152 | fn peek_byte(&self) -> Option<u8> { |
no test coverage detected