(&self, kind: ParseErrorKind)
| 153 | } |
| 154 | |
| 155 | pub(super) fn create_error_for_current_char(&self, kind: ParseErrorKind) -> ParseError { |
| 156 | self.create_error_for_start(self.byte_index, kind) |
| 157 | } |
| 158 | |
| 159 | pub(super) fn create_error_for_start(&self, start: usize, kind: ParseErrorKind) -> ParseError { |
| 160 | let range = Range { |
no test coverage detected