mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
[41272] - Fixed to conform to rust project style
This commit is contained in:
parent
65fafd9414
commit
4ac11becc2
@ -2048,15 +2048,14 @@ impl<'a> LoweringContext<'a> {
|
|||||||
|
|
||||||
// _ => [<else_opt>|()]
|
// _ => [<else_opt>|()]
|
||||||
{
|
{
|
||||||
let wildcard_arm: Option<&Expr> = else_opt.as_ref().map(|p| &**p);
|
let wildcard_arm: Option<&Expr> = else_opt.as_ref().map(|p| &**p);
|
||||||
let wildcard_pattern = self.pat_wild(e.span);
|
let wildcard_pattern = self.pat_wild(e.span);
|
||||||
let body =
|
let body = if let Some(else_expr) = wildcard_arm {
|
||||||
if let Some(else_expr) = wildcard_arm {
|
P(self.lower_expr(else_expr))
|
||||||
P(self.lower_expr(else_expr))
|
} else {
|
||||||
} else {
|
self.expr_tuple(e.span, hir_vec![])
|
||||||
self.expr_tuple(e.span, hir_vec![])
|
};
|
||||||
};
|
arms.push(self.arm(hir_vec![wildcard_pattern], body));
|
||||||
arms.push(self.arm(hir_vec![wildcard_pattern], body));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let contains_else_clause = else_opt.is_some();
|
let contains_else_clause = else_opt.is_some();
|
||||||
|
@ -1,3 +1,13 @@
|
|||||||
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
struct Foo;
|
struct Foo;
|
||||||
|
|
||||||
impl Foo {
|
impl Foo {
|
||||||
|
Loading…
Reference in New Issue
Block a user