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