From 59405bfe4ad0afa0b7ff533c7bfbc3ad4170604c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Mon, 5 Nov 2018 22:29:33 +0100 Subject: cargo format --- crates/ra_syntax/src/parser_impl/event.rs | 7 ++++--- crates/ra_syntax/src/yellow/syntax_error.rs | 7 +++++-- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/crates/ra_syntax/src/parser_impl/event.rs b/crates/ra_syntax/src/parser_impl/event.rs index 1445401bc..bf9c1cef0 100644 --- a/crates/ra_syntax/src/parser_impl/event.rs +++ b/crates/ra_syntax/src/parser_impl/event.rs @@ -162,9 +162,10 @@ impl<'a, S: Sink> EventProcessor<'a, S> { .sum::(); self.leaf(kind, len, n_raw_tokens); } - Event::Error { msg } => self.sink.error( - SyntaxError::new(SyntaxErrorKind::ParseError(msg), self.text_pos), - ), + Event::Error { msg } => self.sink.error(SyntaxError::new( + SyntaxErrorKind::ParseError(msg), + self.text_pos, + )), } } self.sink diff --git a/crates/ra_syntax/src/yellow/syntax_error.rs b/crates/ra_syntax/src/yellow/syntax_error.rs index 098366f85..f3df6bc15 100644 --- a/crates/ra_syntax/src/yellow/syntax_error.rs +++ b/crates/ra_syntax/src/yellow/syntax_error.rs @@ -28,7 +28,10 @@ impl Into for TextRange { impl SyntaxError { pub fn new>(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 -- cgit v1.2.3