cargo format

This commit is contained in:
Adolfo Ochagavía 2018-11-05 22:29:33 +01:00
parent fda8ddc5fe
commit 59405bfe4a
2 changed files with 9 additions and 5 deletions

View file

@ -28,7 +28,10 @@ impl Into<Location> for TextRange {
impl SyntaxError {
pub fn new<L: Into<Location>>(kind: SyntaxErrorKind, loc: L) -> SyntaxError {
SyntaxError { kind, location: loc.into() }
SyntaxError {
kind,
location: loc.into(),
}
}
pub fn location(&self) -> Location {
@ -45,7 +48,7 @@ impl SyntaxError {
pub fn add_offset(mut self, plus_offset: TextUnit) -> SyntaxError {
self.location = match self.location {
Location::Range(range) => Location::Range(range + plus_offset),
Location::Offset(offset) => Location::Offset(offset + plus_offset)
Location::Offset(offset) => Location::Offset(offset + plus_offset),
};
self