Rename ra_parser -> parser

This commit is contained in:
Aleksey Kladov 2020-08-12 17:06:49 +02:00
parent 6dafc13f5f
commit 50a02eb359
47 changed files with 65 additions and 65 deletions

View file

@ -71,7 +71,7 @@ impl SyntaxTreeBuilder {
self.inner.finish_node()
}
pub fn error(&mut self, error: ra_parser::ParseError, text_pos: TextSize) {
pub fn error(&mut self, error: parser::ParseError, text_pos: TextSize) {
self.errors.push(SyntaxError::new_at_offset(*error.0, text_pos))
}
}