(&self)
| 104 | |
| 105 | #[inline] |
| 106 | fn peek_byte(&self) -> Option<u8> { |
| 107 | self.source[self.cursor..].as_bytes().first().copied() |
| 108 | } |
| 109 | |
| 110 | fn parse_unicode_literal(&mut self, literal_number: usize) -> Result<char, LexicalError> { |
| 111 | let mut p: u32 = 0u32; |
no test coverage detected