]> git.lizzy.rs Git - rust.git/blob - src/expr.rs
set of clippy changes
[rust.git] / src / expr.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::borrow::Cow;
12 use std::cmp::min;
13
14 use config::lists::*;
15 use syntax::parse::token::DelimToken;
16 use syntax::source_map::{BytePos, SourceMap, Span};
17 use syntax::{ast, ptr};
18
19 use chains::rewrite_chain;
20 use closures;
21 use comment::{
22     combine_strs_with_missing_comments, contains_comment, recover_comment_removed, rewrite_comment,
23     rewrite_missing_comment, CharClasses, FindUncommented,
24 };
25 use config::{Config, ControlBraceStyle, IndentStyle};
26 use lists::{
27     definitive_tactic, itemize_list, shape_for_tactic, struct_lit_formatting, struct_lit_shape,
28     struct_lit_tactic, write_list, ListFormatting, ListItem, Separator,
29 };
30 use macros::{rewrite_macro, MacroArg, MacroPosition};
31 use matches::rewrite_match;
32 use overflow;
33 use pairs::{rewrite_all_pairs, rewrite_pair, PairParts};
34 use patterns::{can_be_overflowed_pat, is_short_pattern, TuplePatField};
35 use rewrite::{Rewrite, RewriteContext};
36 use shape::{Indent, Shape};
37 use source_map::{LineRangeUtils, SpanUtils};
38 use spanned::Spanned;
39 use string::{rewrite_string, StringFormat};
40 use types::{can_be_overflowed_type, rewrite_path, PathContext};
41 use utils::{
42     colon_spaces, contains_skip, count_newlines, first_line_ends_with, first_line_width,
43     inner_attributes, last_line_extendable, last_line_width, mk_sp, outer_attributes,
44     ptr_vec_to_ref_vec, semicolon_for_stmt, wrap_str,
45 };
46 use vertical::rewrite_with_alignment;
47 use visitor::FmtVisitor;
48
49 impl Rewrite for ast::Expr {
50     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
51         format_expr(self, ExprType::SubExpression, context, shape)
52     }
53 }
54
55 #[derive(Copy, Clone, PartialEq)]
56 pub enum ExprType {
57     Statement,
58     SubExpression,
59 }
60
61 pub fn format_expr(
62     expr: &ast::Expr,
63     expr_type: ExprType,
64     context: &RewriteContext,
65     shape: Shape,
66 ) -> Option<String> {
67     skip_out_of_file_lines_range!(context, expr.span);
68
69     if contains_skip(&*expr.attrs) {
70         return Some(context.snippet(expr.span()).to_owned());
71     }
72
73     let expr_rw = match expr.node {
74         ast::ExprKind::Array(ref expr_vec) => rewrite_array(
75             "",
76             &ptr_vec_to_ref_vec(expr_vec),
77             expr.span,
78             context,
79             shape,
80             choose_separator_tactic(context, expr.span),
81             None,
82         ),
83         ast::ExprKind::Lit(ref l) => rewrite_literal(context, l, shape),
84         ast::ExprKind::Call(ref callee, ref args) => {
85             let inner_span = mk_sp(callee.span.hi(), expr.span.hi());
86             let callee_str = callee.rewrite(context, shape)?;
87             rewrite_call(context, &callee_str, args, inner_span, shape)
88         }
89         ast::ExprKind::Paren(ref subexpr) => rewrite_paren(context, subexpr, shape, expr.span),
90         ast::ExprKind::Binary(op, ref lhs, ref rhs) => {
91             // FIXME: format comments between operands and operator
92             rewrite_all_pairs(expr, shape, context).or_else(|| {
93                 rewrite_pair(
94                     &**lhs,
95                     &**rhs,
96                     PairParts::infix(&format!(" {} ", context.snippet(op.span))),
97                     context,
98                     shape,
99                     context.config.binop_separator(),
100                 )
101             })
102         }
103         ast::ExprKind::Unary(ref op, ref subexpr) => rewrite_unary_op(context, op, subexpr, shape),
104         ast::ExprKind::Struct(ref path, ref fields, ref base) => rewrite_struct_lit(
105             context,
106             path,
107             fields,
108             base.as_ref().map(|e| &**e),
109             expr.span,
110             shape,
111         ),
112         ast::ExprKind::Tup(ref items) => {
113             rewrite_tuple(context, &ptr_vec_to_ref_vec(items), expr.span, shape)
114         }
115         ast::ExprKind::If(..)
116         | ast::ExprKind::IfLet(..)
117         | ast::ExprKind::ForLoop(..)
118         | ast::ExprKind::Loop(..)
119         | ast::ExprKind::While(..)
120         | ast::ExprKind::WhileLet(..) => to_control_flow(expr, expr_type)
121             .and_then(|control_flow| control_flow.rewrite(context, shape)),
122         ast::ExprKind::Block(ref block, opt_label) => {
123             match expr_type {
124                 ExprType::Statement => {
125                     if is_unsafe_block(block) {
126                         rewrite_block(block, Some(&expr.attrs), opt_label, context, shape)
127                     } else if let rw @ Some(_) =
128                         rewrite_empty_block(context, block, Some(&expr.attrs), opt_label, "", shape)
129                     {
130                         // Rewrite block without trying to put it in a single line.
131                         rw
132                     } else {
133                         let prefix = block_prefix(context, block, shape)?;
134
135                         rewrite_block_with_visitor(
136                             context,
137                             &prefix,
138                             block,
139                             Some(&expr.attrs),
140                             opt_label,
141                             shape,
142                             true,
143                         )
144                     }
145                 }
146                 ExprType::SubExpression => {
147                     rewrite_block(block, Some(&expr.attrs), opt_label, context, shape)
148                 }
149             }
150         }
151         ast::ExprKind::Match(ref cond, ref arms) => {
152             rewrite_match(context, cond, arms, shape, expr.span, &expr.attrs)
153         }
154         ast::ExprKind::Path(ref qself, ref path) => {
155             rewrite_path(context, PathContext::Expr, qself.as_ref(), path, shape)
156         }
157         ast::ExprKind::Assign(ref lhs, ref rhs) => {
158             rewrite_assignment(context, lhs, rhs, None, shape)
159         }
160         ast::ExprKind::AssignOp(ref op, ref lhs, ref rhs) => {
161             rewrite_assignment(context, lhs, rhs, Some(op), shape)
162         }
163         ast::ExprKind::Continue(ref opt_label) => {
164             let id_str = match *opt_label {
165                 Some(label) => format!(" {}", label.ident),
166                 None => String::new(),
167             };
168             Some(format!("continue{}", id_str))
169         }
170         ast::ExprKind::Break(ref opt_label, ref opt_expr) => {
171             let id_str = match *opt_label {
172                 Some(label) => format!(" {}", label.ident),
173                 None => String::new(),
174             };
175
176             if let Some(ref expr) = *opt_expr {
177                 rewrite_unary_prefix(context, &format!("break{} ", id_str), &**expr, shape)
178             } else {
179                 Some(format!("break{}", id_str))
180             }
181         }
182         ast::ExprKind::Yield(ref opt_expr) => if let Some(ref expr) = *opt_expr {
183             rewrite_unary_prefix(context, "yield ", &**expr, shape)
184         } else {
185             Some("yield".to_string())
186         },
187         ast::ExprKind::Closure(capture, asyncness, movability, ref fn_decl, ref body, _) => {
188             closures::rewrite_closure(
189                 capture, asyncness, movability, fn_decl, body, expr.span, context, shape,
190             )
191         }
192         ast::ExprKind::Try(..) | ast::ExprKind::Field(..) | ast::ExprKind::MethodCall(..) => {
193             rewrite_chain(expr, context, shape)
194         }
195         ast::ExprKind::Mac(ref mac) => {
196             rewrite_macro(mac, None, context, shape, MacroPosition::Expression).or_else(|| {
197                 wrap_str(
198                     context.snippet(expr.span).to_owned(),
199                     context.config.max_width(),
200                     shape,
201                 )
202             })
203         }
204         ast::ExprKind::Ret(None) => Some("return".to_owned()),
205         ast::ExprKind::Ret(Some(ref expr)) => {
206             rewrite_unary_prefix(context, "return ", &**expr, shape)
207         }
208         ast::ExprKind::Box(ref expr) => rewrite_unary_prefix(context, "box ", &**expr, shape),
209         ast::ExprKind::AddrOf(mutability, ref expr) => {
210             rewrite_expr_addrof(context, mutability, expr, shape)
211         }
212         ast::ExprKind::Cast(ref expr, ref ty) => rewrite_pair(
213             &**expr,
214             &**ty,
215             PairParts::infix(" as "),
216             context,
217             shape,
218             SeparatorPlace::Front,
219         ),
220         ast::ExprKind::Type(ref expr, ref ty) => rewrite_pair(
221             &**expr,
222             &**ty,
223             PairParts::infix(": "),
224             context,
225             shape,
226             SeparatorPlace::Back,
227         ),
228         ast::ExprKind::Index(ref expr, ref index) => {
229             rewrite_index(&**expr, &**index, context, shape)
230         }
231         ast::ExprKind::Repeat(ref expr, ref repeats) => rewrite_pair(
232             &**expr,
233             &*repeats.value,
234             PairParts::new("[", "; ", "]"),
235             context,
236             shape,
237             SeparatorPlace::Back,
238         ),
239         ast::ExprKind::Range(ref lhs, ref rhs, limits) => {
240             let delim = match limits {
241                 ast::RangeLimits::HalfOpen => "..",
242                 ast::RangeLimits::Closed => "..=",
243             };
244
245             fn needs_space_before_range(context: &RewriteContext, lhs: &ast::Expr) -> bool {
246                 match lhs.node {
247                     ast::ExprKind::Lit(ref lit) => match lit.node {
248                         ast::LitKind::FloatUnsuffixed(..) => {
249                             context.snippet(lit.span).ends_with('.')
250                         }
251                         _ => false,
252                     },
253                     _ => false,
254                 }
255             }
256
257             fn needs_space_after_range(rhs: &ast::Expr) -> bool {
258                 match rhs.node {
259                     // Don't format `.. ..` into `....`, which is invalid.
260                     //
261                     // This check is unnecessary for `lhs`, because a range
262                     // starting from another range needs parentheses as `(x ..) ..`
263                     // (`x .. ..` is a range from `x` to `..`).
264                     ast::ExprKind::Range(None, _, _) => true,
265                     _ => false,
266                 }
267             }
268
269             let default_sp_delim = |lhs: Option<&ast::Expr>, rhs: Option<&ast::Expr>| {
270                 let space_if = |b: bool| if b { " " } else { "" };
271
272                 format!(
273                     "{}{}{}",
274                     lhs.map(|lhs| space_if(needs_space_before_range(context, lhs)))
275                         .unwrap_or(""),
276                     delim,
277                     rhs.map(|rhs| space_if(needs_space_after_range(rhs)))
278                         .unwrap_or(""),
279                 )
280             };
281
282             match (lhs.as_ref().map(|x| &**x), rhs.as_ref().map(|x| &**x)) {
283                 (Some(lhs), Some(rhs)) => {
284                     let sp_delim = if context.config.spaces_around_ranges() {
285                         format!(" {} ", delim)
286                     } else {
287                         default_sp_delim(Some(lhs), Some(rhs))
288                     };
289                     rewrite_pair(
290                         &*lhs,
291                         &*rhs,
292                         PairParts::infix(&sp_delim),
293                         context,
294                         shape,
295                         context.config.binop_separator(),
296                     )
297                 }
298                 (None, Some(rhs)) => {
299                     let sp_delim = if context.config.spaces_around_ranges() {
300                         format!("{} ", delim)
301                     } else {
302                         default_sp_delim(None, Some(rhs))
303                     };
304                     rewrite_unary_prefix(context, &sp_delim, &*rhs, shape)
305                 }
306                 (Some(lhs), None) => {
307                     let sp_delim = if context.config.spaces_around_ranges() {
308                         format!(" {}", delim)
309                     } else {
310                         default_sp_delim(Some(lhs), None)
311                     };
312                     rewrite_unary_suffix(context, &sp_delim, &*lhs, shape)
313                 }
314                 (None, None) => Some(delim.to_owned()),
315             }
316         }
317         // We do not format these expressions yet, but they should still
318         // satisfy our width restrictions.
319         ast::ExprKind::InlineAsm(..) => Some(context.snippet(expr.span).to_owned()),
320         ast::ExprKind::TryBlock(ref block) => {
321             if let rw @ Some(_) =
322                 rewrite_single_line_block(context, "try ", block, Some(&expr.attrs), None, shape)
323             {
324                 rw
325             } else {
326                 // 9 = `try `
327                 let budget = shape.width.saturating_sub(9);
328                 Some(format!(
329                     "{}{}",
330                     "try ",
331                     rewrite_block(
332                         block,
333                         Some(&expr.attrs),
334                         None,
335                         context,
336                         Shape::legacy(budget, shape.indent)
337                     )?
338                 ))
339             }
340         }
341         ast::ExprKind::ObsoleteInPlace(ref lhs, ref rhs) => lhs
342             .rewrite(context, shape)
343             .map(|s| s + " <-")
344             .and_then(|lhs| rewrite_assign_rhs(context, lhs, &**rhs, shape)),
345         ast::ExprKind::Async(capture_by, _node_id, ref block) => {
346             let mover = if capture_by == ast::CaptureBy::Value {
347                 "move "
348             } else {
349                 ""
350             };
351             if let rw @ Some(_) = rewrite_single_line_block(
352                 context,
353                 format!("{}{}", "async ", mover).as_str(),
354                 block,
355                 Some(&expr.attrs),
356                 None,
357                 shape,
358             ) {
359                 rw
360             } else {
361                 // 6 = `async `
362                 let budget = shape.width.saturating_sub(6);
363                 Some(format!(
364                     "{}{}{}",
365                     "async ",
366                     mover,
367                     rewrite_block(
368                         block,
369                         Some(&expr.attrs),
370                         None,
371                         context,
372                         Shape::legacy(budget, shape.indent)
373                     )?
374                 ))
375             }
376         }
377     };
378
379     expr_rw
380         .and_then(|expr_str| recover_comment_removed(expr_str, expr.span, context))
381         .and_then(|expr_str| {
382             let attrs = outer_attributes(&expr.attrs);
383             let attrs_str = attrs.rewrite(context, shape)?;
384             let span = mk_sp(
385                 attrs.last().map_or(expr.span.lo(), |attr| attr.span.hi()),
386                 expr.span.lo(),
387             );
388             combine_strs_with_missing_comments(context, &attrs_str, &expr_str, span, shape, false)
389         })
390 }
391
392 pub fn rewrite_array<T: Rewrite + Spanned + ToExpr>(
393     name: &str,
394     exprs: &[&T],
395     span: Span,
396     context: &RewriteContext,
397     shape: Shape,
398     force_separator_tactic: Option<SeparatorTactic>,
399     delim_token: Option<DelimToken>,
400 ) -> Option<String> {
401     overflow::rewrite_with_square_brackets(
402         context,
403         name,
404         exprs,
405         shape,
406         span,
407         force_separator_tactic,
408         delim_token,
409     )
410 }
411
412 fn rewrite_empty_block(
413     context: &RewriteContext,
414     block: &ast::Block,
415     attrs: Option<&[ast::Attribute]>,
416     label: Option<ast::Label>,
417     prefix: &str,
418     shape: Shape,
419 ) -> Option<String> {
420     let label_str = rewrite_label(label);
421     if attrs.map_or(false, |a| !inner_attributes(a).is_empty()) {
422         return None;
423     }
424
425     if block.stmts.is_empty()
426         && !block_contains_comment(block, context.source_map)
427         && shape.width >= 2
428     {
429         return Some(format!("{}{}{{}}", prefix, label_str));
430     }
431
432     // If a block contains only a single-line comment, then leave it on one line.
433     let user_str = context.snippet(block.span);
434     let user_str = user_str.trim();
435     if user_str.starts_with('{') && user_str.ends_with('}') {
436         let comment_str = user_str[1..user_str.len() - 1].trim();
437         if block.stmts.is_empty()
438             && !comment_str.contains('\n')
439             && !comment_str.starts_with("//")
440             && comment_str.len() + 4 <= shape.width
441         {
442             return Some(format!("{}{}{{ {} }}", prefix, label_str, comment_str));
443         }
444     }
445
446     None
447 }
448
449 fn block_prefix(context: &RewriteContext, block: &ast::Block, shape: Shape) -> Option<String> {
450     Some(match block.rules {
451         ast::BlockCheckMode::Unsafe(..) => {
452             let snippet = context.snippet(block.span);
453             let open_pos = snippet.find_uncommented("{")?;
454             // Extract comment between unsafe and block start.
455             let trimmed = &snippet[6..open_pos].trim();
456
457             if !trimmed.is_empty() {
458                 // 9 = "unsafe  {".len(), 7 = "unsafe ".len()
459                 let budget = shape.width.checked_sub(9)?;
460                 format!(
461                     "unsafe {} ",
462                     rewrite_comment(
463                         trimmed,
464                         true,
465                         Shape::legacy(budget, shape.indent + 7),
466                         context.config,
467                     )?
468                 )
469             } else {
470                 "unsafe ".to_owned()
471             }
472         }
473         ast::BlockCheckMode::Default => String::new(),
474     })
475 }
476
477 fn rewrite_single_line_block(
478     context: &RewriteContext,
479     prefix: &str,
480     block: &ast::Block,
481     attrs: Option<&[ast::Attribute]>,
482     label: Option<ast::Label>,
483     shape: Shape,
484 ) -> Option<String> {
485     if is_simple_block(block, attrs, context.source_map) {
486         let expr_shape = shape.offset_left(last_line_width(prefix))?;
487         let expr_str = block.stmts[0].rewrite(context, expr_shape)?;
488         let label_str = rewrite_label(label);
489         let result = format!("{}{}{{ {} }}", prefix, label_str, expr_str);
490         if result.len() <= shape.width && !result.contains('\n') {
491             return Some(result);
492         }
493     }
494     None
495 }
496
497 pub fn rewrite_block_with_visitor(
498     context: &RewriteContext,
499     prefix: &str,
500     block: &ast::Block,
501     attrs: Option<&[ast::Attribute]>,
502     label: Option<ast::Label>,
503     shape: Shape,
504     has_braces: bool,
505 ) -> Option<String> {
506     if let rw @ Some(_) = rewrite_empty_block(context, block, attrs, label, prefix, shape) {
507         return rw;
508     }
509
510     let mut visitor = FmtVisitor::from_context(context);
511     visitor.block_indent = shape.indent;
512     visitor.is_if_else_block = context.is_if_else_block();
513     match block.rules {
514         ast::BlockCheckMode::Unsafe(..) => {
515             let snippet = context.snippet(block.span);
516             let open_pos = snippet.find_uncommented("{")?;
517             visitor.last_pos = block.span.lo() + BytePos(open_pos as u32)
518         }
519         ast::BlockCheckMode::Default => visitor.last_pos = block.span.lo(),
520     }
521
522     let inner_attrs = attrs.map(inner_attributes);
523     let label_str = rewrite_label(label);
524     visitor.visit_block(block, inner_attrs.as_ref().map(|a| &**a), has_braces);
525     Some(format!("{}{}{}", prefix, label_str, visitor.buffer))
526 }
527
528 impl Rewrite for ast::Block {
529     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
530         rewrite_block(self, None, None, context, shape)
531     }
532 }
533
534 fn rewrite_block(
535     block: &ast::Block,
536     attrs: Option<&[ast::Attribute]>,
537     label: Option<ast::Label>,
538     context: &RewriteContext,
539     shape: Shape,
540 ) -> Option<String> {
541     let prefix = block_prefix(context, block, shape)?;
542
543     // shape.width is used only for the single line case: either the empty block `{}`,
544     // or an unsafe expression `unsafe { e }`.
545     if let rw @ Some(_) = rewrite_empty_block(context, block, attrs, label, &prefix, shape) {
546         return rw;
547     }
548
549     let result = rewrite_block_with_visitor(context, &prefix, block, attrs, label, shape, true);
550     if let Some(ref result_str) = result {
551         if result_str.lines().count() <= 3 {
552             if let rw @ Some(_) =
553                 rewrite_single_line_block(context, &prefix, block, attrs, label, shape)
554             {
555                 return rw;
556             }
557         }
558     }
559
560     result
561 }
562
563 impl Rewrite for ast::Stmt {
564     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
565         skip_out_of_file_lines_range!(context, self.span());
566
567         let result = match self.node {
568             ast::StmtKind::Local(ref local) => local.rewrite(context, shape),
569             ast::StmtKind::Expr(ref ex) | ast::StmtKind::Semi(ref ex) => {
570                 let suffix = if semicolon_for_stmt(context, self) {
571                     ";"
572                 } else {
573                     ""
574                 };
575
576                 let shape = shape.sub_width(suffix.len())?;
577                 format_expr(ex, ExprType::Statement, context, shape).map(|s| s + suffix)
578             }
579             ast::StmtKind::Mac(..) | ast::StmtKind::Item(..) => None,
580         };
581         result.and_then(|res| recover_comment_removed(res, self.span(), context))
582     }
583 }
584
585 // Rewrite condition if the given expression has one.
586 pub fn rewrite_cond(context: &RewriteContext, expr: &ast::Expr, shape: Shape) -> Option<String> {
587     match expr.node {
588         ast::ExprKind::Match(ref cond, _) => {
589             // `match `cond` {`
590             let cond_shape = match context.config.indent_style() {
591                 IndentStyle::Visual => shape.shrink_left(6).and_then(|s| s.sub_width(2))?,
592                 IndentStyle::Block => shape.offset_left(8)?,
593             };
594             cond.rewrite(context, cond_shape)
595         }
596         _ => to_control_flow(expr, ExprType::SubExpression).and_then(|control_flow| {
597             let alt_block_sep =
598                 String::from("\n") + &shape.indent.block_only().to_string(context.config);
599             control_flow
600                 .rewrite_cond(context, shape, &alt_block_sep)
601                 .and_then(|rw| Some(rw.0))
602         }),
603     }
604 }
605
606 // Abstraction over control flow expressions
607 #[derive(Debug)]
608 struct ControlFlow<'a> {
609     cond: Option<&'a ast::Expr>,
610     block: &'a ast::Block,
611     else_block: Option<&'a ast::Expr>,
612     label: Option<ast::Label>,
613     pats: Vec<&'a ast::Pat>,
614     keyword: &'a str,
615     matcher: &'a str,
616     connector: &'a str,
617     allow_single_line: bool,
618     // True if this is an `if` expression in an `else if` :-( hacky
619     nested_if: bool,
620     span: Span,
621 }
622
623 fn to_control_flow(expr: &ast::Expr, expr_type: ExprType) -> Option<ControlFlow> {
624     match expr.node {
625         ast::ExprKind::If(ref cond, ref if_block, ref else_block) => Some(ControlFlow::new_if(
626             cond,
627             vec![],
628             if_block,
629             else_block.as_ref().map(|e| &**e),
630             expr_type == ExprType::SubExpression,
631             false,
632             expr.span,
633         )),
634         ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref else_block) => {
635             Some(ControlFlow::new_if(
636                 cond,
637                 ptr_vec_to_ref_vec(pat),
638                 if_block,
639                 else_block.as_ref().map(|e| &**e),
640                 expr_type == ExprType::SubExpression,
641                 false,
642                 expr.span,
643             ))
644         }
645         ast::ExprKind::ForLoop(ref pat, ref cond, ref block, label) => {
646             Some(ControlFlow::new_for(pat, cond, block, label, expr.span))
647         }
648         ast::ExprKind::Loop(ref block, label) => {
649             Some(ControlFlow::new_loop(block, label, expr.span))
650         }
651         ast::ExprKind::While(ref cond, ref block, label) => Some(ControlFlow::new_while(
652             vec![],
653             cond,
654             block,
655             label,
656             expr.span,
657         )),
658         ast::ExprKind::WhileLet(ref pat, ref cond, ref block, label) => Some(
659             ControlFlow::new_while(ptr_vec_to_ref_vec(pat), cond, block, label, expr.span),
660         ),
661         _ => None,
662     }
663 }
664
665 fn choose_matcher(pats: &[&ast::Pat]) -> &'static str {
666     if pats.is_empty() {
667         ""
668     } else {
669         "let"
670     }
671 }
672
673 impl<'a> ControlFlow<'a> {
674     fn new_if(
675         cond: &'a ast::Expr,
676         pats: Vec<&'a ast::Pat>,
677         block: &'a ast::Block,
678         else_block: Option<&'a ast::Expr>,
679         allow_single_line: bool,
680         nested_if: bool,
681         span: Span,
682     ) -> ControlFlow<'a> {
683         let matcher = choose_matcher(&pats);
684         ControlFlow {
685             cond: Some(cond),
686             block,
687             else_block,
688             label: None,
689             pats,
690             keyword: "if",
691             matcher,
692             connector: " =",
693             allow_single_line,
694             nested_if,
695             span,
696         }
697     }
698
699     fn new_loop(block: &'a ast::Block, label: Option<ast::Label>, span: Span) -> ControlFlow<'a> {
700         ControlFlow {
701             cond: None,
702             block,
703             else_block: None,
704             label,
705             pats: vec![],
706             keyword: "loop",
707             matcher: "",
708             connector: "",
709             allow_single_line: false,
710             nested_if: false,
711             span,
712         }
713     }
714
715     fn new_while(
716         pats: Vec<&'a ast::Pat>,
717         cond: &'a ast::Expr,
718         block: &'a ast::Block,
719         label: Option<ast::Label>,
720         span: Span,
721     ) -> ControlFlow<'a> {
722         let matcher = choose_matcher(&pats);
723         ControlFlow {
724             cond: Some(cond),
725             block,
726             else_block: None,
727             label,
728             pats,
729             keyword: "while",
730             matcher,
731             connector: " =",
732             allow_single_line: false,
733             nested_if: false,
734             span,
735         }
736     }
737
738     fn new_for(
739         pat: &'a ast::Pat,
740         cond: &'a ast::Expr,
741         block: &'a ast::Block,
742         label: Option<ast::Label>,
743         span: Span,
744     ) -> ControlFlow<'a> {
745         ControlFlow {
746             cond: Some(cond),
747             block,
748             else_block: None,
749             label,
750             pats: vec![pat],
751             keyword: "for",
752             matcher: "",
753             connector: " in",
754             allow_single_line: false,
755             nested_if: false,
756             span,
757         }
758     }
759
760     fn rewrite_single_line(
761         &self,
762         pat_expr_str: &str,
763         context: &RewriteContext,
764         width: usize,
765     ) -> Option<String> {
766         assert!(self.allow_single_line);
767         let else_block = self.else_block?;
768         let fixed_cost = self.keyword.len() + "  {  } else {  }".len();
769
770         if let ast::ExprKind::Block(ref else_node, _) = else_block.node {
771             if !is_simple_block(self.block, None, context.source_map)
772                 || !is_simple_block(else_node, None, context.source_map)
773                 || pat_expr_str.contains('\n')
774             {
775                 return None;
776             }
777
778             let new_width = width.checked_sub(pat_expr_str.len() + fixed_cost)?;
779             let expr = &self.block.stmts[0];
780             let if_str = expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
781
782             let new_width = new_width.checked_sub(if_str.len())?;
783             let else_expr = &else_node.stmts[0];
784             let else_str = else_expr.rewrite(context, Shape::legacy(new_width, Indent::empty()))?;
785
786             if if_str.contains('\n') || else_str.contains('\n') {
787                 return None;
788             }
789
790             let result = format!(
791                 "{} {} {{ {} }} else {{ {} }}",
792                 self.keyword, pat_expr_str, if_str, else_str
793             );
794
795             if result.len() <= width {
796                 return Some(result);
797             }
798         }
799
800         None
801     }
802 }
803
804 impl<'a> ControlFlow<'a> {
805     fn rewrite_pat_expr(
806         &self,
807         context: &RewriteContext,
808         expr: &ast::Expr,
809         shape: Shape,
810         offset: usize,
811     ) -> Option<String> {
812         debug!("rewrite_pat_expr {:?} {:?} {:?}", shape, self.pats, expr);
813
814         let cond_shape = shape.offset_left(offset)?;
815         if !self.pats.is_empty() {
816             let matcher = if self.matcher.is_empty() {
817                 self.matcher.to_owned()
818             } else {
819                 format!("{} ", self.matcher)
820             };
821             let pat_shape = cond_shape
822                 .offset_left(matcher.len())?
823                 .sub_width(self.connector.len())?;
824             let pat_string = rewrite_multiple_patterns(context, &self.pats, pat_shape)?;
825             let result = format!("{}{}{}", matcher, pat_string, self.connector);
826             return rewrite_assign_rhs(context, result, expr, cond_shape);
827         }
828
829         let expr_rw = expr.rewrite(context, cond_shape);
830         // The expression may (partially) fit on the current line.
831         // We do not allow splitting between `if` and condition.
832         if self.keyword == "if" || expr_rw.is_some() {
833             return expr_rw;
834         }
835
836         // The expression won't fit on the current line, jump to next.
837         let nested_shape = shape
838             .block_indent(context.config.tab_spaces())
839             .with_max_width(context.config);
840         let nested_indent_str = nested_shape.indent.to_string_with_newline(context.config);
841         expr.rewrite(context, nested_shape)
842             .map(|expr_rw| format!("{}{}", nested_indent_str, expr_rw))
843     }
844
845     fn rewrite_cond(
846         &self,
847         context: &RewriteContext,
848         shape: Shape,
849         alt_block_sep: &str,
850     ) -> Option<(String, usize)> {
851         // Do not take the rhs overhead from the upper expressions into account
852         // when rewriting pattern.
853         let new_width = context.budget(shape.used_width());
854         let fresh_shape = Shape {
855             width: new_width,
856             ..shape
857         };
858         let constr_shape = if self.nested_if {
859             // We are part of an if-elseif-else chain. Our constraints are tightened.
860             // 7 = "} else " .len()
861             fresh_shape.offset_left(7)?
862         } else {
863             fresh_shape
864         };
865
866         let label_string = rewrite_label(self.label);
867         // 1 = space after keyword.
868         let offset = self.keyword.len() + label_string.len() + 1;
869
870         let pat_expr_string = match self.cond {
871             Some(cond) => self.rewrite_pat_expr(context, cond, constr_shape, offset)?,
872             None => String::new(),
873         };
874
875         let brace_overhead =
876             if context.config.control_brace_style() != ControlBraceStyle::AlwaysNextLine {
877                 // 2 = ` {`
878                 2
879             } else {
880                 0
881             };
882         let one_line_budget = context
883             .config
884             .max_width()
885             .saturating_sub(constr_shape.used_width() + offset + brace_overhead);
886         let force_newline_brace = (pat_expr_string.contains('\n')
887             || pat_expr_string.len() > one_line_budget)
888             && !last_line_extendable(&pat_expr_string);
889
890         // Try to format if-else on single line.
891         if self.allow_single_line
892             && context
893                 .config
894                 .width_heuristics()
895                 .single_line_if_else_max_width
896                 > 0
897         {
898             let trial = self.rewrite_single_line(&pat_expr_string, context, shape.width);
899
900             if let Some(cond_str) = trial {
901                 if cond_str.len() <= context
902                     .config
903                     .width_heuristics()
904                     .single_line_if_else_max_width
905                 {
906                     return Some((cond_str, 0));
907                 }
908             }
909         }
910
911         let cond_span = if let Some(cond) = self.cond {
912             cond.span
913         } else {
914             mk_sp(self.block.span.lo(), self.block.span.lo())
915         };
916
917         // `for event in event`
918         // Do not include label in the span.
919         let lo = self
920             .label
921             .map_or(self.span.lo(), |label| label.ident.span.hi());
922         let between_kwd_cond = mk_sp(
923             context
924                 .snippet_provider
925                 .span_after(mk_sp(lo, self.span.hi()), self.keyword.trim()),
926             if self.pats.is_empty() {
927                 cond_span.lo()
928             } else if self.matcher.is_empty() {
929                 self.pats[0].span.lo()
930             } else {
931                 context
932                     .snippet_provider
933                     .span_before(self.span, self.matcher.trim())
934             },
935         );
936
937         let between_kwd_cond_comment = extract_comment(between_kwd_cond, context, shape);
938
939         let after_cond_comment =
940             extract_comment(mk_sp(cond_span.hi(), self.block.span.lo()), context, shape);
941
942         let block_sep = if self.cond.is_none() && between_kwd_cond_comment.is_some() {
943             ""
944         } else if context.config.control_brace_style() == ControlBraceStyle::AlwaysNextLine
945             || force_newline_brace
946         {
947             alt_block_sep
948         } else {
949             " "
950         };
951
952         let used_width = if pat_expr_string.contains('\n') {
953             last_line_width(&pat_expr_string)
954         } else {
955             // 2 = spaces after keyword and condition.
956             label_string.len() + self.keyword.len() + pat_expr_string.len() + 2
957         };
958
959         Some((
960             format!(
961                 "{}{}{}{}{}",
962                 label_string,
963                 self.keyword,
964                 between_kwd_cond_comment.as_ref().map_or(
965                     if pat_expr_string.is_empty() || pat_expr_string.starts_with('\n') {
966                         ""
967                     } else {
968                         " "
969                     },
970                     |s| &**s,
971                 ),
972                 pat_expr_string,
973                 after_cond_comment.as_ref().map_or(block_sep, |s| &**s)
974             ),
975             used_width,
976         ))
977     }
978 }
979
980 impl<'a> Rewrite for ControlFlow<'a> {
981     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
982         debug!("ControlFlow::rewrite {:?} {:?}", self, shape);
983
984         let alt_block_sep = &shape.indent.to_string_with_newline(context.config);
985         let (cond_str, used_width) = self.rewrite_cond(context, shape, alt_block_sep)?;
986         // If `used_width` is 0, it indicates that whole control flow is written in a single line.
987         if used_width == 0 {
988             return Some(cond_str);
989         }
990
991         let block_width = shape.width.saturating_sub(used_width);
992         // This is used only for the empty block case: `{}`. So, we use 1 if we know
993         // we should avoid the single line case.
994         let block_width = if self.else_block.is_some() || self.nested_if {
995             min(1, block_width)
996         } else {
997             block_width
998         };
999         let block_shape = Shape {
1000             width: block_width,
1001             ..shape
1002         };
1003         let block_str = {
1004             let old_val = context.is_if_else_block.replace(self.else_block.is_some());
1005             let result =
1006                 rewrite_block_with_visitor(context, "", self.block, None, None, block_shape, true);
1007             context.is_if_else_block.replace(old_val);
1008             result?
1009         };
1010
1011         let mut result = format!("{}{}", cond_str, block_str);
1012
1013         if let Some(else_block) = self.else_block {
1014             let shape = Shape::indented(shape.indent, context.config);
1015             let mut last_in_chain = false;
1016             let rewrite = match else_block.node {
1017                 // If the else expression is another if-else expression, prevent it
1018                 // from being formatted on a single line.
1019                 // Note how we're passing the original shape, as the
1020                 // cost of "else" should not cascade.
1021                 ast::ExprKind::IfLet(ref pat, ref cond, ref if_block, ref next_else_block) => {
1022                     ControlFlow::new_if(
1023                         cond,
1024                         ptr_vec_to_ref_vec(pat),
1025                         if_block,
1026                         next_else_block.as_ref().map(|e| &**e),
1027                         false,
1028                         true,
1029                         mk_sp(else_block.span.lo(), self.span.hi()),
1030                     ).rewrite(context, shape)
1031                 }
1032                 ast::ExprKind::If(ref cond, ref if_block, ref next_else_block) => {
1033                     ControlFlow::new_if(
1034                         cond,
1035                         vec![],
1036                         if_block,
1037                         next_else_block.as_ref().map(|e| &**e),
1038                         false,
1039                         true,
1040                         mk_sp(else_block.span.lo(), self.span.hi()),
1041                     ).rewrite(context, shape)
1042                 }
1043                 _ => {
1044                     last_in_chain = true;
1045                     // When rewriting a block, the width is only used for single line
1046                     // blocks, passing 1 lets us avoid that.
1047                     let else_shape = Shape {
1048                         width: min(1, shape.width),
1049                         ..shape
1050                     };
1051                     format_expr(else_block, ExprType::Statement, context, else_shape)
1052                 }
1053             };
1054
1055             let between_kwd_else_block = mk_sp(
1056                 self.block.span.hi(),
1057                 context
1058                     .snippet_provider
1059                     .span_before(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
1060             );
1061             let between_kwd_else_block_comment =
1062                 extract_comment(between_kwd_else_block, context, shape);
1063
1064             let after_else = mk_sp(
1065                 context
1066                     .snippet_provider
1067                     .span_after(mk_sp(self.block.span.hi(), else_block.span.lo()), "else"),
1068                 else_block.span.lo(),
1069             );
1070             let after_else_comment = extract_comment(after_else, context, shape);
1071
1072             let between_sep = match context.config.control_brace_style() {
1073                 ControlBraceStyle::AlwaysNextLine | ControlBraceStyle::ClosingNextLine => {
1074                     &*alt_block_sep
1075                 }
1076                 ControlBraceStyle::AlwaysSameLine => " ",
1077             };
1078             let after_sep = match context.config.control_brace_style() {
1079                 ControlBraceStyle::AlwaysNextLine if last_in_chain => &*alt_block_sep,
1080                 _ => " ",
1081             };
1082
1083             result.push_str(&format!(
1084                 "{}else{}",
1085                 between_kwd_else_block_comment
1086                     .as_ref()
1087                     .map_or(between_sep, |s| &**s),
1088                 after_else_comment.as_ref().map_or(after_sep, |s| &**s),
1089             ));
1090             result.push_str(&rewrite?);
1091         }
1092
1093         Some(result)
1094     }
1095 }
1096
1097 fn rewrite_label(opt_label: Option<ast::Label>) -> Cow<'static, str> {
1098     match opt_label {
1099         Some(label) => Cow::from(format!("{}: ", label.ident)),
1100         None => Cow::from(""),
1101     }
1102 }
1103
1104 fn extract_comment(span: Span, context: &RewriteContext, shape: Shape) -> Option<String> {
1105     match rewrite_missing_comment(span, shape, context) {
1106         Some(ref comment) if !comment.is_empty() => Some(format!(
1107             "{indent}{}{indent}",
1108             comment,
1109             indent = shape.indent.to_string_with_newline(context.config)
1110         )),
1111         _ => None,
1112     }
1113 }
1114
1115 pub fn block_contains_comment(block: &ast::Block, source_map: &SourceMap) -> bool {
1116     let snippet = source_map.span_to_snippet(block.span).unwrap();
1117     contains_comment(&snippet)
1118 }
1119
1120 // Checks that a block contains no statements, an expression and no comments or
1121 // attributes.
1122 // FIXME: incorrectly returns false when comment is contained completely within
1123 // the expression.
1124 pub fn is_simple_block(
1125     block: &ast::Block,
1126     attrs: Option<&[ast::Attribute]>,
1127     source_map: &SourceMap,
1128 ) -> bool {
1129     (block.stmts.len() == 1
1130         && stmt_is_expr(&block.stmts[0])
1131         && !block_contains_comment(block, source_map)
1132         && attrs.map_or(true, |a| a.is_empty()))
1133 }
1134
1135 /// Checks whether a block contains at most one statement or expression, and no
1136 /// comments or attributes.
1137 pub fn is_simple_block_stmt(
1138     block: &ast::Block,
1139     attrs: Option<&[ast::Attribute]>,
1140     source_map: &SourceMap,
1141 ) -> bool {
1142     block.stmts.len() <= 1
1143         && !block_contains_comment(block, source_map)
1144         && attrs.map_or(true, |a| a.is_empty())
1145 }
1146
1147 /// Checks whether a block contains no statements, expressions, comments, or
1148 /// inner attributes.
1149 pub fn is_empty_block(
1150     block: &ast::Block,
1151     attrs: Option<&[ast::Attribute]>,
1152     source_map: &SourceMap,
1153 ) -> bool {
1154     block.stmts.is_empty()
1155         && !block_contains_comment(block, source_map)
1156         && attrs.map_or(true, |a| inner_attributes(a).is_empty())
1157 }
1158
1159 pub fn stmt_is_expr(stmt: &ast::Stmt) -> bool {
1160     match stmt.node {
1161         ast::StmtKind::Expr(..) => true,
1162         _ => false,
1163     }
1164 }
1165
1166 pub fn is_unsafe_block(block: &ast::Block) -> bool {
1167     if let ast::BlockCheckMode::Unsafe(..) = block.rules {
1168         true
1169     } else {
1170         false
1171     }
1172 }
1173
1174 pub fn rewrite_multiple_patterns(
1175     context: &RewriteContext,
1176     pats: &[&ast::Pat],
1177     shape: Shape,
1178 ) -> Option<String> {
1179     let pat_strs = pats
1180         .iter()
1181         .map(|p| p.rewrite(context, shape))
1182         .collect::<Option<Vec<_>>>()?;
1183
1184     let use_mixed_layout = pats
1185         .iter()
1186         .zip(pat_strs.iter())
1187         .all(|(pat, pat_str)| is_short_pattern(pat, pat_str));
1188     let items: Vec<_> = pat_strs.into_iter().map(ListItem::from_str).collect();
1189     let tactic = if use_mixed_layout {
1190         DefinitiveListTactic::Mixed
1191     } else {
1192         definitive_tactic(
1193             &items,
1194             ListTactic::HorizontalVertical,
1195             Separator::VerticalBar,
1196             shape.width,
1197         )
1198     };
1199     let fmt = ListFormatting::new(shape, context.config)
1200         .tactic(tactic)
1201         .separator(" |")
1202         .separator_place(context.config.binop_separator())
1203         .ends_with_newline(false);
1204     write_list(&items, &fmt)
1205 }
1206
1207 pub fn rewrite_literal(context: &RewriteContext, l: &ast::Lit, shape: Shape) -> Option<String> {
1208     match l.node {
1209         ast::LitKind::Str(_, ast::StrStyle::Cooked) => rewrite_string_lit(context, l.span, shape),
1210         _ => wrap_str(
1211             context.snippet(l.span).to_owned(),
1212             context.config.max_width(),
1213             shape,
1214         ),
1215     }
1216 }
1217
1218 fn rewrite_string_lit(context: &RewriteContext, span: Span, shape: Shape) -> Option<String> {
1219     let string_lit = context.snippet(span);
1220
1221     if !context.config.format_strings() {
1222         if string_lit
1223             .lines()
1224             .rev()
1225             .skip(1)
1226             .all(|line| line.ends_with('\\'))
1227         {
1228             let new_indent = shape.visual_indent(1).indent;
1229             let indented_string_lit = String::from(
1230                 string_lit
1231                     .lines()
1232                     .map(|line| {
1233                         format!(
1234                             "{}{}",
1235                             new_indent.to_string(context.config),
1236                             line.trim_left()
1237                         )
1238                     }).collect::<Vec<_>>()
1239                     .join("\n")
1240                     .trim_left(),
1241             );
1242             return wrap_str(indented_string_lit, context.config.max_width(), shape);
1243         } else {
1244             return wrap_str(string_lit.to_owned(), context.config.max_width(), shape);
1245         }
1246     }
1247
1248     // Remove the quote characters.
1249     let str_lit = &string_lit[1..string_lit.len() - 1];
1250
1251     rewrite_string(
1252         str_lit,
1253         &StringFormat::new(shape.visual_indent(0), context.config),
1254     )
1255 }
1256
1257 /// In case special-case style is required, returns an offset from which we start horizontal layout.
1258 pub fn maybe_get_args_offset<T: ToExpr>(callee_str: &str, args: &[&T]) -> Option<(bool, usize)> {
1259     if let Some(&(_, num_args_before)) = SPECIAL_MACRO_WHITELIST
1260         .iter()
1261         .find(|&&(s, _)| s == callee_str)
1262     {
1263         let all_simple = args.len() > num_args_before && is_every_expr_simple(args);
1264
1265         Some((all_simple, num_args_before))
1266     } else {
1267         None
1268     }
1269 }
1270
1271 /// A list of `format!`-like macros, that take a long format string and a list of arguments to
1272 /// format.
1273 ///
1274 /// Organized as a list of `(&str, usize)` tuples, giving the name of the macro and the number of
1275 /// arguments before the format string (none for `format!("format", ...)`, one for `assert!(result,
1276 /// "format", ...)`, two for `assert_eq!(left, right, "format", ...)`).
1277 const SPECIAL_MACRO_WHITELIST: &[(&str, usize)] = &[
1278     // format! like macros
1279     // From the Rust Standard Library.
1280     ("eprint!", 0),
1281     ("eprintln!", 0),
1282     ("format!", 0),
1283     ("format_args!", 0),
1284     ("print!", 0),
1285     ("println!", 0),
1286     ("panic!", 0),
1287     ("unreachable!", 0),
1288     // From the `log` crate.
1289     ("debug!", 0),
1290     ("error!", 0),
1291     ("info!", 0),
1292     ("warn!", 0),
1293     // write! like macros
1294     ("assert!", 1),
1295     ("debug_assert!", 1),
1296     ("write!", 1),
1297     ("writeln!", 1),
1298     // assert_eq! like macros
1299     ("assert_eq!", 2),
1300     ("assert_ne!", 2),
1301     ("debug_assert_eq!", 2),
1302     ("debug_assert_ne!", 2),
1303 ];
1304
1305 fn choose_separator_tactic(context: &RewriteContext, span: Span) -> Option<SeparatorTactic> {
1306     if context.inside_macro() {
1307         if span_ends_with_comma(context, span) {
1308             Some(SeparatorTactic::Always)
1309         } else {
1310             Some(SeparatorTactic::Never)
1311         }
1312     } else {
1313         None
1314     }
1315 }
1316
1317 pub fn rewrite_call(
1318     context: &RewriteContext,
1319     callee: &str,
1320     args: &[ptr::P<ast::Expr>],
1321     span: Span,
1322     shape: Shape,
1323 ) -> Option<String> {
1324     overflow::rewrite_with_parens(
1325         context,
1326         callee,
1327         &ptr_vec_to_ref_vec(args),
1328         shape,
1329         span,
1330         context.config.width_heuristics().fn_call_width,
1331         choose_separator_tactic(context, span),
1332     )
1333 }
1334
1335 fn is_simple_expr(expr: &ast::Expr) -> bool {
1336     match expr.node {
1337         ast::ExprKind::Lit(..) => true,
1338         ast::ExprKind::Path(ref qself, ref path) => qself.is_none() && path.segments.len() <= 1,
1339         ast::ExprKind::AddrOf(_, ref expr)
1340         | ast::ExprKind::Box(ref expr)
1341         | ast::ExprKind::Cast(ref expr, _)
1342         | ast::ExprKind::Field(ref expr, _)
1343         | ast::ExprKind::Try(ref expr)
1344         | ast::ExprKind::Unary(_, ref expr) => is_simple_expr(expr),
1345         ast::ExprKind::Index(ref lhs, ref rhs) => is_simple_expr(lhs) && is_simple_expr(rhs),
1346         ast::ExprKind::Repeat(ref lhs, ref rhs) => {
1347             is_simple_expr(lhs) && is_simple_expr(&*rhs.value)
1348         }
1349         _ => false,
1350     }
1351 }
1352
1353 pub fn is_every_expr_simple<T: ToExpr>(lists: &[&T]) -> bool {
1354     lists
1355         .iter()
1356         .all(|arg| arg.to_expr().map_or(false, is_simple_expr))
1357 }
1358
1359 pub fn can_be_overflowed_expr(context: &RewriteContext, expr: &ast::Expr, args_len: usize) -> bool {
1360     match expr.node {
1361         ast::ExprKind::Match(..) => {
1362             (context.use_block_indent() && args_len == 1)
1363                 || (context.config.indent_style() == IndentStyle::Visual && args_len > 1)
1364         }
1365         ast::ExprKind::If(..)
1366         | ast::ExprKind::IfLet(..)
1367         | ast::ExprKind::ForLoop(..)
1368         | ast::ExprKind::Loop(..)
1369         | ast::ExprKind::While(..)
1370         | ast::ExprKind::WhileLet(..) => {
1371             context.config.combine_control_expr() && context.use_block_indent() && args_len == 1
1372         }
1373         ast::ExprKind::Block(..) | ast::ExprKind::Closure(..) => {
1374             context.use_block_indent()
1375                 || context.config.indent_style() == IndentStyle::Visual && args_len > 1
1376         }
1377         ast::ExprKind::Array(..)
1378         | ast::ExprKind::Call(..)
1379         | ast::ExprKind::Mac(..)
1380         | ast::ExprKind::MethodCall(..)
1381         | ast::ExprKind::Struct(..)
1382         | ast::ExprKind::Tup(..) => context.use_block_indent() && args_len == 1,
1383         ast::ExprKind::AddrOf(_, ref expr)
1384         | ast::ExprKind::Box(ref expr)
1385         | ast::ExprKind::Try(ref expr)
1386         | ast::ExprKind::Unary(_, ref expr)
1387         | ast::ExprKind::Cast(ref expr, _) => can_be_overflowed_expr(context, expr, args_len),
1388         _ => false,
1389     }
1390 }
1391
1392 pub fn is_nested_call(expr: &ast::Expr) -> bool {
1393     match expr.node {
1394         ast::ExprKind::Call(..) | ast::ExprKind::Mac(..) => true,
1395         ast::ExprKind::AddrOf(_, ref expr)
1396         | ast::ExprKind::Box(ref expr)
1397         | ast::ExprKind::Try(ref expr)
1398         | ast::ExprKind::Unary(_, ref expr)
1399         | ast::ExprKind::Cast(ref expr, _) => is_nested_call(expr),
1400         _ => false,
1401     }
1402 }
1403
1404 /// Return true if a function call or a method call represented by the given span ends with a
1405 /// trailing comma. This function is used when rewriting macro, as adding or removing a trailing
1406 /// comma from macro can potentially break the code.
1407 pub fn span_ends_with_comma(context: &RewriteContext, span: Span) -> bool {
1408     let mut result: bool = Default::default();
1409     let mut prev_char: char = Default::default();
1410     let closing_delimiters = &[')', '}', ']'];
1411
1412     for (kind, c) in CharClasses::new(context.snippet(span).chars()) {
1413         match c {
1414             _ if kind.is_comment() || c.is_whitespace() => continue,
1415             c if closing_delimiters.contains(&c) => {
1416                 result &= !closing_delimiters.contains(&prev_char);
1417             }
1418             ',' => result = true,
1419             _ => result = false,
1420         }
1421         prev_char = c;
1422     }
1423
1424     result
1425 }
1426
1427 fn rewrite_paren(
1428     context: &RewriteContext,
1429     mut subexpr: &ast::Expr,
1430     shape: Shape,
1431     mut span: Span,
1432 ) -> Option<String> {
1433     debug!("rewrite_paren, shape: {:?}", shape);
1434
1435     // Extract comments within parens.
1436     let mut pre_comment;
1437     let mut post_comment;
1438     let remove_nested_parens = context.config.remove_nested_parens();
1439     loop {
1440         // 1 = "(" or ")"
1441         let pre_span = mk_sp(span.lo() + BytePos(1), subexpr.span.lo());
1442         let post_span = mk_sp(subexpr.span.hi(), span.hi() - BytePos(1));
1443         pre_comment = rewrite_missing_comment(pre_span, shape, context)?;
1444         post_comment = rewrite_missing_comment(post_span, shape, context)?;
1445
1446         // Remove nested parens if there are no comments.
1447         if let ast::ExprKind::Paren(ref subsubexpr) = subexpr.node {
1448             if remove_nested_parens && pre_comment.is_empty() && post_comment.is_empty() {
1449                 span = subexpr.span;
1450                 subexpr = subsubexpr;
1451                 continue;
1452             }
1453         }
1454
1455         break;
1456     }
1457
1458     // 1 `(`
1459     let sub_shape = shape.offset_left(1).and_then(|s| s.sub_width(1))?;
1460
1461     let subexpr_str = subexpr.rewrite(context, sub_shape)?;
1462     debug!("rewrite_paren, subexpr_str: `{:?}`", subexpr_str);
1463
1464     // 2 = `()`
1465     if subexpr_str.contains('\n') || first_line_width(&subexpr_str) + 2 <= shape.width {
1466         Some(format!("({}{}{})", pre_comment, &subexpr_str, post_comment))
1467     } else {
1468         None
1469     }
1470 }
1471
1472 fn rewrite_index(
1473     expr: &ast::Expr,
1474     index: &ast::Expr,
1475     context: &RewriteContext,
1476     shape: Shape,
1477 ) -> Option<String> {
1478     let expr_str = expr.rewrite(context, shape)?;
1479
1480     let offset = last_line_width(&expr_str) + 1;
1481     let rhs_overhead = shape.rhs_overhead(context.config);
1482     let index_shape = if expr_str.contains('\n') {
1483         Shape::legacy(context.config.max_width(), shape.indent)
1484             .offset_left(offset)
1485             .and_then(|shape| shape.sub_width(1 + rhs_overhead))
1486     } else {
1487         shape.visual_indent(offset).sub_width(offset + 1)
1488     };
1489     let orig_index_rw = index_shape.and_then(|s| index.rewrite(context, s));
1490
1491     // Return if index fits in a single line.
1492     match orig_index_rw {
1493         Some(ref index_str) if !index_str.contains('\n') => {
1494             return Some(format!("{}[{}]", expr_str, index_str));
1495         }
1496         _ => (),
1497     }
1498
1499     // Try putting index on the next line and see if it fits in a single line.
1500     let indent = shape.indent.block_indent(context.config);
1501     let index_shape = Shape::indented(indent, context.config).offset_left(1)?;
1502     let index_shape = index_shape.sub_width(1 + rhs_overhead)?;
1503     let new_index_rw = index.rewrite(context, index_shape);
1504     match (orig_index_rw, new_index_rw) {
1505         (_, Some(ref new_index_str)) if !new_index_str.contains('\n') => Some(format!(
1506             "{}{}[{}]",
1507             expr_str,
1508             indent.to_string_with_newline(context.config),
1509             new_index_str,
1510         )),
1511         (None, Some(ref new_index_str)) => Some(format!(
1512             "{}{}[{}]",
1513             expr_str,
1514             indent.to_string_with_newline(context.config),
1515             new_index_str,
1516         )),
1517         (Some(ref index_str), _) => Some(format!("{}[{}]", expr_str, index_str)),
1518         _ => None,
1519     }
1520 }
1521
1522 fn struct_lit_can_be_aligned(fields: &[ast::Field], base: &Option<&ast::Expr>) -> bool {
1523     if base.is_some() {
1524         return false;
1525     }
1526
1527     fields.iter().all(|field| !field.is_shorthand)
1528 }
1529
1530 fn rewrite_struct_lit<'a>(
1531     context: &RewriteContext,
1532     path: &ast::Path,
1533     fields: &'a [ast::Field],
1534     base: Option<&'a ast::Expr>,
1535     span: Span,
1536     shape: Shape,
1537 ) -> Option<String> {
1538     debug!("rewrite_struct_lit: shape {:?}", shape);
1539
1540     enum StructLitField<'a> {
1541         Regular(&'a ast::Field),
1542         Base(&'a ast::Expr),
1543     }
1544
1545     // 2 = " {".len()
1546     let path_shape = shape.sub_width(2)?;
1547     let path_str = rewrite_path(context, PathContext::Expr, None, path, path_shape)?;
1548
1549     if fields.is_empty() && base.is_none() {
1550         return Some(format!("{} {{}}", path_str));
1551     }
1552
1553     // Foo { a: Foo } - indent is +3, width is -5.
1554     let (h_shape, v_shape) = struct_lit_shape(shape, context, path_str.len() + 3, 2)?;
1555
1556     let one_line_width = h_shape.map_or(0, |shape| shape.width);
1557     let body_lo = context.snippet_provider.span_after(span, "{");
1558     let fields_str = if struct_lit_can_be_aligned(fields, &base)
1559         && context.config.struct_field_align_threshold() > 0
1560     {
1561         rewrite_with_alignment(
1562             fields,
1563             context,
1564             shape,
1565             mk_sp(body_lo, span.hi()),
1566             one_line_width,
1567         )?
1568     } else {
1569         let field_iter = fields
1570             .into_iter()
1571             .map(StructLitField::Regular)
1572             .chain(base.into_iter().map(StructLitField::Base));
1573
1574         let span_lo = |item: &StructLitField| match *item {
1575             StructLitField::Regular(field) => field.span().lo(),
1576             StructLitField::Base(expr) => {
1577                 let last_field_hi = fields.last().map_or(span.lo(), |field| field.span.hi());
1578                 let snippet = context.snippet(mk_sp(last_field_hi, expr.span.lo()));
1579                 let pos = snippet.find_uncommented("..").unwrap();
1580                 last_field_hi + BytePos(pos as u32)
1581             }
1582         };
1583         let span_hi = |item: &StructLitField| match *item {
1584             StructLitField::Regular(field) => field.span().hi(),
1585             StructLitField::Base(expr) => expr.span.hi(),
1586         };
1587         let rewrite = |item: &StructLitField| match *item {
1588             StructLitField::Regular(field) => {
1589                 // The 1 taken from the v_budget is for the comma.
1590                 rewrite_field(context, field, v_shape.sub_width(1)?, 0)
1591             }
1592             StructLitField::Base(expr) => {
1593                 // 2 = ..
1594                 expr.rewrite(context, v_shape.offset_left(2)?)
1595                     .map(|s| format!("..{}", s))
1596             }
1597         };
1598
1599         let items = itemize_list(
1600             context.snippet_provider,
1601             field_iter,
1602             "}",
1603             ",",
1604             span_lo,
1605             span_hi,
1606             rewrite,
1607             body_lo,
1608             span.hi(),
1609             false,
1610         );
1611         let item_vec = items.collect::<Vec<_>>();
1612
1613         let tactic = struct_lit_tactic(h_shape, context, &item_vec);
1614         let nested_shape = shape_for_tactic(tactic, h_shape, v_shape);
1615
1616         let ends_with_comma = span_ends_with_comma(context, span);
1617         let force_no_trailing_comma = context.inside_macro() && !ends_with_comma;
1618
1619         let fmt = struct_lit_formatting(
1620             nested_shape,
1621             tactic,
1622             context,
1623             force_no_trailing_comma || base.is_some(),
1624         );
1625
1626         write_list(&item_vec, &fmt)?
1627     };
1628
1629     let fields_str = wrap_struct_field(context, &fields_str, shape, v_shape, one_line_width);
1630     Some(format!("{} {{{}}}", path_str, fields_str))
1631
1632     // FIXME if context.config.indent_style() == Visual, but we run out
1633     // of space, we should fall back to BlockIndent.
1634 }
1635
1636 pub fn wrap_struct_field(
1637     context: &RewriteContext,
1638     fields_str: &str,
1639     shape: Shape,
1640     nested_shape: Shape,
1641     one_line_width: usize,
1642 ) -> String {
1643     if context.config.indent_style() == IndentStyle::Block
1644         && (fields_str.contains('\n')
1645             || !context.config.struct_lit_single_line()
1646             || fields_str.len() > one_line_width)
1647     {
1648         format!(
1649             "{}{}{}",
1650             nested_shape.indent.to_string_with_newline(context.config),
1651             fields_str,
1652             shape.indent.to_string_with_newline(context.config)
1653         )
1654     } else {
1655         // One liner or visual indent.
1656         format!(" {} ", fields_str)
1657     }
1658 }
1659
1660 pub fn struct_lit_field_separator(config: &Config) -> &str {
1661     colon_spaces(config.space_before_colon(), config.space_after_colon())
1662 }
1663
1664 pub fn rewrite_field(
1665     context: &RewriteContext,
1666     field: &ast::Field,
1667     shape: Shape,
1668     prefix_max_width: usize,
1669 ) -> Option<String> {
1670     if contains_skip(&field.attrs) {
1671         return Some(context.snippet(field.span()).to_owned());
1672     }
1673     let mut attrs_str = field.attrs.rewrite(context, shape)?;
1674     if !attrs_str.is_empty() {
1675         attrs_str.push_str(&shape.indent.to_string_with_newline(context.config));
1676     };
1677     let name = context.snippet(field.ident.span);
1678     if field.is_shorthand {
1679         Some(attrs_str + &name)
1680     } else {
1681         let mut separator = String::from(struct_lit_field_separator(context.config));
1682         for _ in 0..prefix_max_width.saturating_sub(name.len()) {
1683             separator.push(' ');
1684         }
1685         let overhead = name.len() + separator.len();
1686         let expr_shape = shape.offset_left(overhead)?;
1687         let expr = field.expr.rewrite(context, expr_shape);
1688
1689         match expr {
1690             Some(ref e) if e.as_str() == name && context.config.use_field_init_shorthand() => {
1691                 Some(attrs_str + &name)
1692             }
1693             Some(e) => Some(format!("{}{}{}{}", attrs_str, name, separator, e)),
1694             None => {
1695                 let expr_offset = shape.indent.block_indent(context.config);
1696                 let expr = field
1697                     .expr
1698                     .rewrite(context, Shape::indented(expr_offset, context.config));
1699                 expr.map(|s| {
1700                     format!(
1701                         "{}{}:\n{}{}",
1702                         attrs_str,
1703                         name,
1704                         expr_offset.to_string(context.config),
1705                         s
1706                     )
1707                 })
1708             }
1709         }
1710     }
1711 }
1712
1713 fn rewrite_tuple_in_visual_indent_style<'a, T>(
1714     context: &RewriteContext,
1715     items: &[&T],
1716     span: Span,
1717     shape: Shape,
1718 ) -> Option<String>
1719 where
1720     T: Rewrite + Spanned + ToExpr + 'a,
1721 {
1722     let mut items = items.iter();
1723     // In case of length 1, need a trailing comma
1724     debug!("rewrite_tuple_in_visual_indent_style {:?}", shape);
1725     if items.len() == 1 {
1726         // 3 = "(" + ",)"
1727         let nested_shape = shape.sub_width(3)?.visual_indent(1);
1728         return items
1729             .next()
1730             .unwrap()
1731             .rewrite(context, nested_shape)
1732             .map(|s| format!("({},)", s));
1733     }
1734
1735     let list_lo = context.snippet_provider.span_after(span, "(");
1736     let nested_shape = shape.sub_width(2)?.visual_indent(1);
1737     let items = itemize_list(
1738         context.snippet_provider,
1739         items,
1740         ")",
1741         ",",
1742         |item| item.span().lo(),
1743         |item| item.span().hi(),
1744         |item| item.rewrite(context, nested_shape),
1745         list_lo,
1746         span.hi() - BytePos(1),
1747         false,
1748     );
1749     let item_vec: Vec<_> = items.collect();
1750     let tactic = definitive_tactic(
1751         &item_vec,
1752         ListTactic::HorizontalVertical,
1753         Separator::Comma,
1754         nested_shape.width,
1755     );
1756     let fmt = ListFormatting::new(shape, context.config)
1757         .tactic(tactic)
1758         .ends_with_newline(false);
1759     let list_str = write_list(&item_vec, &fmt)?;
1760
1761     Some(format!("({})", list_str))
1762 }
1763
1764 pub fn rewrite_tuple<'a, T>(
1765     context: &RewriteContext,
1766     items: &[&T],
1767     span: Span,
1768     shape: Shape,
1769 ) -> Option<String>
1770 where
1771     T: Rewrite + Spanned + ToExpr + 'a,
1772 {
1773     debug!("rewrite_tuple {:?}", shape);
1774     if context.use_block_indent() {
1775         // We use the same rule as function calls for rewriting tuples.
1776         let force_tactic = if context.inside_macro() {
1777             if span_ends_with_comma(context, span) {
1778                 Some(SeparatorTactic::Always)
1779             } else {
1780                 Some(SeparatorTactic::Never)
1781             }
1782         } else if items.len() == 1 {
1783             Some(SeparatorTactic::Always)
1784         } else {
1785             None
1786         };
1787         overflow::rewrite_with_parens(
1788             context,
1789             "",
1790             items,
1791             shape,
1792             span,
1793             context.config.width_heuristics().fn_call_width,
1794             force_tactic,
1795         )
1796     } else {
1797         rewrite_tuple_in_visual_indent_style(context, items, span, shape)
1798     }
1799 }
1800
1801 pub fn rewrite_unary_prefix<R: Rewrite>(
1802     context: &RewriteContext,
1803     prefix: &str,
1804     rewrite: &R,
1805     shape: Shape,
1806 ) -> Option<String> {
1807     rewrite
1808         .rewrite(context, shape.offset_left(prefix.len())?)
1809         .map(|r| format!("{}{}", prefix, r))
1810 }
1811
1812 // FIXME: this is probably not correct for multi-line Rewrites. we should
1813 // subtract suffix.len() from the last line budget, not the first!
1814 pub fn rewrite_unary_suffix<R: Rewrite>(
1815     context: &RewriteContext,
1816     suffix: &str,
1817     rewrite: &R,
1818     shape: Shape,
1819 ) -> Option<String> {
1820     rewrite
1821         .rewrite(context, shape.sub_width(suffix.len())?)
1822         .map(|mut r| {
1823             r.push_str(suffix);
1824             r
1825         })
1826 }
1827
1828 fn rewrite_unary_op(
1829     context: &RewriteContext,
1830     op: &ast::UnOp,
1831     expr: &ast::Expr,
1832     shape: Shape,
1833 ) -> Option<String> {
1834     // For some reason, an UnOp is not spanned like BinOp!
1835     let operator_str = match *op {
1836         ast::UnOp::Deref => "*",
1837         ast::UnOp::Not => "!",
1838         ast::UnOp::Neg => "-",
1839     };
1840     rewrite_unary_prefix(context, operator_str, expr, shape)
1841 }
1842
1843 fn rewrite_assignment(
1844     context: &RewriteContext,
1845     lhs: &ast::Expr,
1846     rhs: &ast::Expr,
1847     op: Option<&ast::BinOp>,
1848     shape: Shape,
1849 ) -> Option<String> {
1850     let operator_str = match op {
1851         Some(op) => context.snippet(op.span),
1852         None => "=",
1853     };
1854
1855     // 1 = space between lhs and operator.
1856     let lhs_shape = shape.sub_width(operator_str.len() + 1)?;
1857     let lhs_str = format!("{} {}", lhs.rewrite(context, lhs_shape)?, operator_str);
1858
1859     rewrite_assign_rhs(context, lhs_str, rhs, shape)
1860 }
1861
1862 /// Controls where to put the rhs.
1863 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
1864 pub enum RhsTactics {
1865     /// Use heuristics.
1866     Default,
1867     /// Put the rhs on the next line if it uses multiple line, without extra indentation.
1868     ForceNextLineWithoutIndent,
1869 }
1870
1871 // The left hand side must contain everything up to, and including, the
1872 // assignment operator.
1873 pub fn rewrite_assign_rhs<S: Into<String>, R: Rewrite>(
1874     context: &RewriteContext,
1875     lhs: S,
1876     ex: &R,
1877     shape: Shape,
1878 ) -> Option<String> {
1879     rewrite_assign_rhs_with(context, lhs, ex, shape, RhsTactics::Default)
1880 }
1881
1882 pub fn rewrite_assign_rhs_with<S: Into<String>, R: Rewrite>(
1883     context: &RewriteContext,
1884     lhs: S,
1885     ex: &R,
1886     shape: Shape,
1887     rhs_tactics: RhsTactics,
1888 ) -> Option<String> {
1889     let lhs = lhs.into();
1890     let last_line_width = last_line_width(&lhs).saturating_sub(if lhs.contains('\n') {
1891         shape.indent.width()
1892     } else {
1893         0
1894     });
1895     // 1 = space between operator and rhs.
1896     let orig_shape = shape.offset_left(last_line_width + 1).unwrap_or(Shape {
1897         width: 0,
1898         offset: shape.offset + last_line_width + 1,
1899         ..shape
1900     });
1901     let rhs = choose_rhs(
1902         context,
1903         ex,
1904         orig_shape,
1905         ex.rewrite(context, orig_shape),
1906         rhs_tactics,
1907     )?;
1908     Some(lhs + &rhs)
1909 }
1910
1911 fn choose_rhs<R: Rewrite>(
1912     context: &RewriteContext,
1913     expr: &R,
1914     shape: Shape,
1915     orig_rhs: Option<String>,
1916     rhs_tactics: RhsTactics,
1917 ) -> Option<String> {
1918     match orig_rhs {
1919         Some(ref new_str) if !new_str.contains('\n') && new_str.len() <= shape.width => {
1920             Some(format!(" {}", new_str))
1921         }
1922         _ => {
1923             // Expression did not fit on the same line as the identifier.
1924             // Try splitting the line and see if that works better.
1925             let new_shape = shape_from_rhs_tactic(context, shape, rhs_tactics)?;
1926             let new_rhs = expr.rewrite(context, new_shape);
1927             let new_indent_str = &shape
1928                 .indent
1929                 .block_indent(context.config)
1930                 .to_string_with_newline(context.config);
1931
1932             match (orig_rhs, new_rhs) {
1933                 (Some(ref orig_rhs), Some(ref new_rhs))
1934                     if wrap_str(new_rhs.clone(), context.config.max_width(), new_shape)
1935                         .is_none() =>
1936                 {
1937                     Some(format!(" {}", orig_rhs))
1938                 }
1939                 (Some(ref orig_rhs), Some(ref new_rhs))
1940                     if prefer_next_line(orig_rhs, new_rhs, rhs_tactics) =>
1941                 {
1942                     Some(format!("{}{}", new_indent_str, new_rhs))
1943                 }
1944                 (None, Some(ref new_rhs)) => Some(format!("{}{}", new_indent_str, new_rhs)),
1945                 (None, None) => None,
1946                 (Some(orig_rhs), _) => Some(format!(" {}", orig_rhs)),
1947             }
1948         }
1949     }
1950 }
1951
1952 fn shape_from_rhs_tactic(
1953     context: &RewriteContext,
1954     shape: Shape,
1955     rhs_tactic: RhsTactics,
1956 ) -> Option<Shape> {
1957     match rhs_tactic {
1958         RhsTactics::ForceNextLineWithoutIndent => Some(shape.with_max_width(context.config)),
1959         RhsTactics::Default => {
1960             Shape::indented(shape.indent.block_indent(context.config), context.config)
1961                 .sub_width(shape.rhs_overhead(context.config))
1962         }
1963     }
1964 }
1965
1966 pub fn prefer_next_line(orig_rhs: &str, next_line_rhs: &str, rhs_tactics: RhsTactics) -> bool {
1967     rhs_tactics == RhsTactics::ForceNextLineWithoutIndent
1968         || !next_line_rhs.contains('\n')
1969         || count_newlines(orig_rhs) > count_newlines(next_line_rhs) + 1
1970         || first_line_ends_with(orig_rhs, '(') && !first_line_ends_with(next_line_rhs, '(')
1971         || first_line_ends_with(orig_rhs, '{') && !first_line_ends_with(next_line_rhs, '{')
1972         || first_line_ends_with(orig_rhs, '[') && !first_line_ends_with(next_line_rhs, '[')
1973 }
1974
1975 fn rewrite_expr_addrof(
1976     context: &RewriteContext,
1977     mutability: ast::Mutability,
1978     expr: &ast::Expr,
1979     shape: Shape,
1980 ) -> Option<String> {
1981     let operator_str = match mutability {
1982         ast::Mutability::Immutable => "&",
1983         ast::Mutability::Mutable => "&mut ",
1984     };
1985     rewrite_unary_prefix(context, operator_str, expr, shape)
1986 }
1987
1988 pub trait ToExpr {
1989     fn to_expr(&self) -> Option<&ast::Expr>;
1990     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool;
1991 }
1992
1993 impl ToExpr for ast::Expr {
1994     fn to_expr(&self) -> Option<&ast::Expr> {
1995         Some(self)
1996     }
1997
1998     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
1999         can_be_overflowed_expr(context, self, len)
2000     }
2001 }
2002
2003 impl ToExpr for ast::Ty {
2004     fn to_expr(&self) -> Option<&ast::Expr> {
2005         None
2006     }
2007
2008     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2009         can_be_overflowed_type(context, self, len)
2010     }
2011 }
2012
2013 impl<'a> ToExpr for TuplePatField<'a> {
2014     fn to_expr(&self) -> Option<&ast::Expr> {
2015         None
2016     }
2017
2018     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2019         can_be_overflowed_pat(context, self, len)
2020     }
2021 }
2022
2023 impl<'a> ToExpr for ast::StructField {
2024     fn to_expr(&self) -> Option<&ast::Expr> {
2025         None
2026     }
2027
2028     fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
2029         false
2030     }
2031 }
2032
2033 impl<'a> ToExpr for MacroArg {
2034     fn to_expr(&self) -> Option<&ast::Expr> {
2035         match *self {
2036             MacroArg::Expr(ref expr) => Some(expr),
2037             _ => None,
2038         }
2039     }
2040
2041     fn can_be_overflowed(&self, context: &RewriteContext, len: usize) -> bool {
2042         match *self {
2043             MacroArg::Expr(ref expr) => can_be_overflowed_expr(context, expr, len),
2044             MacroArg::Ty(ref ty) => can_be_overflowed_type(context, ty, len),
2045             MacroArg::Pat(..) => false,
2046             MacroArg::Item(..) => len == 1,
2047         }
2048     }
2049 }
2050
2051 impl ToExpr for ast::GenericParam {
2052     fn to_expr(&self) -> Option<&ast::Expr> {
2053         None
2054     }
2055
2056     fn can_be_overflowed(&self, _: &RewriteContext, _: usize) -> bool {
2057         false
2058     }
2059 }
2060
2061 pub fn is_method_call(expr: &ast::Expr) -> bool {
2062     match expr.node {
2063         ast::ExprKind::MethodCall(..) => true,
2064         ast::ExprKind::AddrOf(_, ref expr)
2065         | ast::ExprKind::Box(ref expr)
2066         | ast::ExprKind::Cast(ref expr, _)
2067         | ast::ExprKind::Try(ref expr)
2068         | ast::ExprKind::Unary(_, ref expr) => is_method_call(expr),
2069         _ => false,
2070     }
2071 }