(&self)
| 65 | |
| 66 | #[inline] |
| 67 | fn peek_byte(&self) -> Option<u8> { |
| 68 | self.source[self.cursor..].as_bytes().first().copied() |
| 69 | } |
| 70 | |
| 71 | fn parse_unicode_literal(&mut self, literal_number: usize) -> Result<CodePoint, LexicalError> { |
| 72 | let mut p: u32 = 0u32; |
no test coverage detected