Merge pull request #1783 from topecongiro/trailing-semicolon

Add trailing_semicolon config option
This commit is contained in:
Nick Cameron 2017-07-12 17:34:13 +12:00 committed by GitHub
commit 43af9c84b1
8 changed files with 95 additions and 6 deletions

View file

@ -1698,6 +1698,27 @@ let Lorem {
See also: [`match_block_trailing_comma`](#match_block_trailing_comma).
## `trailing_semicolon`
Add trailing semicolon after break, continue and return
- **Default value**: `true`
- **Possible values**: `true`, `false`
#### `true`:
```rust
fn foo() -> usize {
return 0;
}
```
#### `false`:
```rust
fn foo() -> usize {
return 0
}
```
## `type_punctuation_density`
Determines if `+` or `=` are wrapped in spaces in the punctuation of types

View file

@ -519,6 +519,7 @@ create_config! {
impl_empty_single_line: bool, true, "Put empty-body implementations on a single line";
trailing_comma: SeparatorTactic, SeparatorTactic::Vertical,
"How to handle trailing commas for lists";
trailing_semicolon: bool, true, "Add trailing semicolon after break, continue and return";
fn_empty_single_line: bool, true, "Put empty-body functions on a single line";
fn_single_line: bool, false, "Put single-expression functions on a single line";
fn_return_indent: ReturnIndent, ReturnIndent::WithArgs,

View file

@ -906,7 +906,11 @@ impl Rewrite for ast::Stmt {
let result = match self.node {
ast::StmtKind::Local(ref local) => local.rewrite(context, shape),
ast::StmtKind::Expr(ref ex) | ast::StmtKind::Semi(ref ex) => {
let suffix = if semicolon_for_stmt(self) { ";" } else { "" };
let suffix = if semicolon_for_stmt(context, self) {
";"
} else {
""
};
format_expr(
ex,

View file

@ -352,7 +352,11 @@ impl<'a> FmtVisitor<'a> {
if let Some(ref stmt) = block.stmts.first() {
match stmt_expr(stmt) {
Some(e) => {
let suffix = if semicolon_for_expr(e) { ";" } else { "" };
let suffix = if semicolon_for_expr(&self.get_context(), e) {
";"
} else {
""
};
format_expr(
&e,

View file

@ -156,21 +156,26 @@ pub fn end_typaram(typaram: &ast::TyParam) -> BytePos {
}
#[inline]
pub fn semicolon_for_expr(expr: &ast::Expr) -> bool {
pub fn semicolon_for_expr(context: &RewriteContext, expr: &ast::Expr) -> bool {
match expr.node {
ast::ExprKind::Ret(..) | ast::ExprKind::Continue(..) | ast::ExprKind::Break(..) => true,
ast::ExprKind::Ret(..) | ast::ExprKind::Continue(..) | ast::ExprKind::Break(..) => {
context.config.trailing_semicolon()
}
_ => false,
}
}
#[inline]
pub fn semicolon_for_stmt(stmt: &ast::Stmt) -> bool {
pub fn semicolon_for_stmt(context: &RewriteContext, stmt: &ast::Stmt) -> bool {
match stmt.node {
ast::StmtKind::Semi(ref expr) => match expr.node {
ast::ExprKind::While(..) |
ast::ExprKind::WhileLet(..) |
ast::ExprKind::Loop(..) |
ast::ExprKind::ForLoop(..) => false,
ast::ExprKind::Break(..) | ast::ExprKind::Continue(..) | ast::ExprKind::Ret(..) => {
context.config.trailing_semicolon()
}
_ => true,
},
ast::StmtKind::Expr(..) => false,

View file

@ -144,7 +144,7 @@ impl<'a> FmtVisitor<'a> {
if !b.stmts.is_empty() {
if let Some(expr) = utils::stmt_expr(&b.stmts[b.stmts.len() - 1]) {
if utils::semicolon_for_expr(expr) {
if utils::semicolon_for_expr(&self.get_context(), expr) {
self.buffer.push_str(";");
}
}

View file

@ -0,0 +1,27 @@
// rustfmt-trailing_semicolon: false
#![feature(loop_break_value)]
fn main() {
'a: loop {
break 'a
}
let mut done = false;
'b: while !done {
done = true;
continue 'b
}
let x = loop {
break 5
};
let x = 'c: loop {
break 'c 5
};
}
fn foo() -> usize {
return 0
}

View file

@ -0,0 +1,27 @@
// rustfmt-trailing_semicolon: true
#![feature(loop_break_value)]
fn main() {
'a: loop {
break 'a;
}
let mut done = false;
'b: while !done {
done = true;
continue 'b;
}
let x = loop {
break 5;
};
let x = 'c: loop {
break 'c 5;
};
}
fn foo() -> usize {
return 0;
}