use correct spacing for enum pattern

This commit is contained in:
Aleksey Kladov 2019-10-26 18:03:55 +03:00
parent 3126152a84
commit 4ef9b8d17a
4 changed files with 6 additions and 6 deletions

View file

@ -26,7 +26,7 @@ use crate::{Assist, AssistCtx, AssistId};
// //
// fn handle(action: Action) { // fn handle(action: Action) {
// match action { // match action {
// Action::Move{ distance } => (), // Action::Move { distance } => (),
// Action::Stop => (), // Action::Stop => (),
// } // }
// } // }
@ -154,7 +154,7 @@ mod tests {
A::Bs => (), A::Bs => (),
A::Cs(_) => (), A::Cs(_) => (),
A::Ds(_, _) => (), A::Ds(_, _) => (),
A::Es{ x, y } => (), A::Es { x, y } => (),
} }
} }
"#, "#,
@ -207,7 +207,7 @@ mod tests {
fn foo(a: &mut A) { fn foo(a: &mut A) {
match <|>a { match <|>a {
A::Es{ x, y } => (), A::Es { x, y } => (),
} }
} }
"#, "#,

View file

@ -196,7 +196,7 @@ enum Action { Move { distance: u32 }, Stop }
fn handle(action: Action) { fn handle(action: Action) {
match action { match action {
Action::Move{ distance } => (), Action::Move { distance } => (),
Action::Stop => (), Action::Stop => (),
} }
} }

View file

@ -77,7 +77,7 @@ pub fn tuple_struct_pat(
pub fn record_pat(path: ast::Path, pats: impl Iterator<Item = ast::Pat>) -> ast::RecordPat { pub fn record_pat(path: ast::Path, pats: impl Iterator<Item = ast::Pat>) -> ast::RecordPat {
let pats_str = pats.map(|p| p.syntax().to_string()).join(", "); let pats_str = pats.map(|p| p.syntax().to_string()).join(", ");
return from_text(&format!("{}{{ {} }}", path.syntax(), pats_str)); return from_text(&format!("{} {{ {} }}", path.syntax(), pats_str));
fn from_text(text: &str) -> ast::RecordPat { fn from_text(text: &str) -> ast::RecordPat {
ast_from_text(&format!("fn f({}: ())", text)) ast_from_text(&format!("fn f({}: ())", text))

View file

@ -191,7 +191,7 @@ enum Action { Move { distance: u32 }, Stop }
fn handle(action: Action) { fn handle(action: Action) {
match action { match action {
Action::Move{ distance } => (), Action::Move { distance } => (),
Action::Stop => (), Action::Stop => (),
} }
} }