(&self)
| 150 | |
| 151 | #[inline] |
| 152 | fn peek_byte(&self) -> Option<u8> { |
| 153 | self.source.as_bytes()[self.cursor..].first().copied() |
| 154 | } |
| 155 | |
| 156 | fn parse_unicode_literal(&mut self, literal_number: usize) -> Result<char, LexicalError> { |
| 157 | let mut p: u32 = 0u32; |
no test coverage detected