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