(&mut self, start: usize, end: usize, msg: &'static str)
| 34 | |
| 35 | #[inline] |
| 36 | fn report(&mut self, start: usize, end: usize, msg: &'static str) { |
| 37 | self.errors.push(LexError { start, end, msg }); |
| 38 | } |
| 39 | |
| 40 | /* All inner scan loops use BYTE_CLASS indexed loads, zero branches per byte. */ |
| 41 | #[inline] |
no test coverage detected