Shrink ra_parser::Event from 32 bytes to 16 bytes
This boxes the Error variant with the assumption that it is rarely constructed
This commit is contained in:
@@ -70,6 +70,6 @@ impl SyntaxTreeBuilder {
|
||||
}
|
||||
|
||||
pub fn error(&mut self, error: ra_parser::ParseError, text_pos: TextSize) {
|
||||
self.errors.push(SyntaxError::new_at_offset(error.0, text_pos))
|
||||
self.errors.push(SyntaxError::new_at_offset(*error.0, text_pos))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user