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