(&self, kind: ParseErrorKind)
| 162 | } |
| 163 | |
| 164 | pub fn create_error(&self, kind: ParseErrorKind) -> ParseError { |
| 165 | self.scanner.create_error_for_current_token(kind) |
| 166 | } |
| 167 | |
| 168 | pub fn create_error_for_current_range(&mut self, kind: ParseErrorKind) -> ParseError { |
| 169 | let range = self.end_range(); |
no test coverage detected