]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/print/pprust.rs
Print the visibility in `print_variant`.
[rust.git] / src / libsyntax / print / pprust.rs
1 use crate::ast::{self, BlockCheckMode, PatKind, RangeEnd, RangeSyntax};
2 use crate::ast::{SelfKind, GenericBound, TraitBoundModifier};
3 use crate::ast::{Attribute, GenericArg, MacArgs};
4 use crate::util::parser::{self, AssocOp, Fixity};
5 use crate::util::comments;
6 use crate::attr;
7 use crate::source_map::{self, SourceMap, Spanned};
8 use crate::token::{self, BinOpToken, DelimToken, Nonterminal, Token, TokenKind};
9 use crate::print::pp::{self, Breaks};
10 use crate::print::pp::Breaks::{Consistent, Inconsistent};
11 use crate::ptr::P;
12 use crate::util::classify;
13 use crate::sess::ParseSess;
14 use crate::symbol::{kw, sym};
15 use crate::tokenstream::{self, TokenStream, TokenTree};
16
17 use syntax_pos::{self, BytePos};
18 use syntax_pos::{FileName, Span};
19
20 use std::borrow::Cow;
21
22 #[cfg(test)]
23 mod tests;
24
25 pub enum MacHeader<'a> {
26     Path(&'a ast::Path),
27     Keyword(&'static str),
28 }
29
30 pub enum AnnNode<'a> {
31     Ident(&'a ast::Ident),
32     Name(&'a ast::Name),
33     Block(&'a ast::Block),
34     Item(&'a ast::Item),
35     SubItem(ast::NodeId),
36     Expr(&'a ast::Expr),
37     Pat(&'a ast::Pat),
38     Crate(&'a ast::Crate),
39 }
40
41 pub trait PpAnn {
42     fn pre(&self, _state: &mut State<'_>, _node: AnnNode<'_>) { }
43     fn post(&self, _state: &mut State<'_>, _node: AnnNode<'_>) { }
44 }
45
46 #[derive(Copy, Clone)]
47 pub struct NoAnn;
48
49 impl PpAnn for NoAnn {}
50
51 pub struct Comments<'a> {
52     cm: &'a SourceMap,
53     comments: Vec<comments::Comment>,
54     current: usize,
55 }
56
57 impl<'a> Comments<'a> {
58     pub fn new(
59         cm: &'a SourceMap,
60         sess: &ParseSess,
61         filename: FileName,
62         input: String,
63     ) -> Comments<'a> {
64         let comments = comments::gather_comments(sess, filename, input);
65         Comments {
66             cm,
67             comments,
68             current: 0,
69         }
70     }
71
72     pub fn next(&self) -> Option<comments::Comment> {
73         self.comments.get(self.current).cloned()
74     }
75
76     pub fn trailing_comment(
77         &mut self,
78         span: syntax_pos::Span,
79         next_pos: Option<BytePos>,
80     ) -> Option<comments::Comment> {
81         if let Some(cmnt) = self.next() {
82             if cmnt.style != comments::Trailing { return None; }
83             let span_line = self.cm.lookup_char_pos(span.hi());
84             let comment_line = self.cm.lookup_char_pos(cmnt.pos);
85             let next = next_pos.unwrap_or_else(|| cmnt.pos + BytePos(1));
86             if span.hi() < cmnt.pos && cmnt.pos < next && span_line.line == comment_line.line {
87                 return Some(cmnt);
88             }
89         }
90
91         None
92     }
93 }
94
95 pub struct State<'a> {
96     pub s: pp::Printer,
97     comments: Option<Comments<'a>>,
98     ann: &'a (dyn PpAnn+'a),
99     is_expanded: bool
100 }
101
102 crate const INDENT_UNIT: usize = 4;
103
104 /// Requires you to pass an input filename and reader so that
105 /// it can scan the input text for comments to copy forward.
106 pub fn print_crate<'a>(cm: &'a SourceMap,
107                        sess: &ParseSess,
108                        krate: &ast::Crate,
109                        filename: FileName,
110                        input: String,
111                        ann: &'a dyn PpAnn,
112                        is_expanded: bool) -> String {
113     let mut s = State {
114         s: pp::mk_printer(),
115         comments: Some(Comments::new(cm, sess, filename, input)),
116         ann,
117         is_expanded,
118     };
119
120     if is_expanded && sess.injected_crate_name.try_get().is_some() {
121         // We need to print `#![no_std]` (and its feature gate) so that
122         // compiling pretty-printed source won't inject libstd again.
123         // However, we don't want these attributes in the AST because
124         // of the feature gate, so we fake them up here.
125
126         // `#![feature(prelude_import)]`
127         let pi_nested = attr::mk_nested_word_item(ast::Ident::with_dummy_span(sym::prelude_import));
128         let list = attr::mk_list_item(ast::Ident::with_dummy_span(sym::feature), vec![pi_nested]);
129         let fake_attr = attr::mk_attr_inner(list);
130         s.print_attribute(&fake_attr);
131
132         // Currently, in Rust 2018 we don't have `extern crate std;` at the crate
133         // root, so this is not needed, and actually breaks things.
134         if sess.edition == syntax_pos::edition::Edition::Edition2015 {
135             // `#![no_std]`
136             let no_std_meta = attr::mk_word_item(ast::Ident::with_dummy_span(sym::no_std));
137             let fake_attr = attr::mk_attr_inner(no_std_meta);
138             s.print_attribute(&fake_attr);
139         }
140     }
141
142     s.print_mod(&krate.module, &krate.attrs);
143     s.print_remaining_comments();
144     s.ann.post(&mut s, AnnNode::Crate(krate));
145     s.s.eof()
146 }
147
148 pub fn to_string<F>(f: F) -> String where
149     F: FnOnce(&mut State<'_>),
150 {
151     let mut printer = State {
152         s: pp::mk_printer(),
153         comments: None,
154         ann: &NoAnn,
155         is_expanded: false
156     };
157     f(&mut printer);
158     printer.s.eof()
159 }
160
161 // This makes comma-separated lists look slightly nicer,
162 // and also addresses a specific regression described in issue #63896.
163 fn tt_prepend_space(tt: &TokenTree) -> bool {
164     match tt {
165         TokenTree::Token(token) => match token.kind {
166             token::Comma => false,
167             _ => true,
168         }
169         _ => true,
170     }
171 }
172
173 fn binop_to_string(op: BinOpToken) -> &'static str {
174     match op {
175         token::Plus     => "+",
176         token::Minus    => "-",
177         token::Star     => "*",
178         token::Slash    => "/",
179         token::Percent  => "%",
180         token::Caret    => "^",
181         token::And      => "&",
182         token::Or       => "|",
183         token::Shl      => "<<",
184         token::Shr      => ">>",
185     }
186 }
187
188 pub fn literal_to_string(lit: token::Lit) -> String {
189     let token::Lit { kind, symbol, suffix } = lit;
190     let mut out = match kind {
191         token::Byte          => format!("b'{}'", symbol),
192         token::Char          => format!("'{}'", symbol),
193         token::Str           => format!("\"{}\"", symbol),
194         token::StrRaw(n)     => format!("r{delim}\"{string}\"{delim}",
195                                         delim="#".repeat(n as usize),
196                                         string=symbol),
197         token::ByteStr       => format!("b\"{}\"", symbol),
198         token::ByteStrRaw(n) => format!("br{delim}\"{string}\"{delim}",
199                                         delim="#".repeat(n as usize),
200                                         string=symbol),
201         token::Integer       |
202         token::Float         |
203         token::Bool          |
204         token::Err           => symbol.to_string(),
205     };
206
207     if let Some(suffix) = suffix {
208         out.push_str(&suffix.as_str())
209     }
210
211     out
212 }
213
214 /// Print an ident from AST, `$crate` is converted into its respective crate name.
215 pub fn ast_ident_to_string(ident: ast::Ident, is_raw: bool) -> String {
216     ident_to_string(ident.name, is_raw, Some(ident.span))
217 }
218
219 // AST pretty-printer is used as a fallback for turning AST structures into token streams for
220 // proc macros. Additionally, proc macros may stringify their input and expect it survive the
221 // stringification (especially true for proc macro derives written between Rust 1.15 and 1.30).
222 // So we need to somehow pretty-print `$crate` in a way preserving at least some of its
223 // hygiene data, most importantly name of the crate it refers to.
224 // As a result we print `$crate` as `crate` if it refers to the local crate
225 // and as `::other_crate_name` if it refers to some other crate.
226 // Note, that this is only done if the ident token is printed from inside of AST pretty-pringing,
227 // but not otherwise. Pretty-printing is the only way for proc macros to discover token contents,
228 // so we should not perform this lossy conversion if the top level call to the pretty-printer was
229 // done for a token stream or a single token.
230 fn ident_to_string(name: ast::Name, is_raw: bool, convert_dollar_crate: Option<Span>) -> String {
231     if is_raw {
232         format!("r#{}", name)
233     } else {
234         if name == kw::DollarCrate {
235             if let Some(span) = convert_dollar_crate {
236                 let converted = span.ctxt().dollar_crate_name();
237                 return if converted.is_path_segment_keyword() {
238                     converted.to_string()
239                 } else {
240                     format!("::{}", converted)
241                 }
242             }
243         }
244         name.to_string()
245     }
246 }
247
248 /// Print the token kind precisely, without converting `$crate` into its respective crate name.
249 pub fn token_kind_to_string(tok: &TokenKind) -> String {
250     token_kind_to_string_ext(tok, None)
251 }
252
253 fn token_kind_to_string_ext(tok: &TokenKind, convert_dollar_crate: Option<Span>) -> String {
254     match *tok {
255         token::Eq                   => "=".to_string(),
256         token::Lt                   => "<".to_string(),
257         token::Le                   => "<=".to_string(),
258         token::EqEq                 => "==".to_string(),
259         token::Ne                   => "!=".to_string(),
260         token::Ge                   => ">=".to_string(),
261         token::Gt                   => ">".to_string(),
262         token::Not                  => "!".to_string(),
263         token::Tilde                => "~".to_string(),
264         token::OrOr                 => "||".to_string(),
265         token::AndAnd               => "&&".to_string(),
266         token::BinOp(op)            => binop_to_string(op).to_string(),
267         token::BinOpEq(op)          => format!("{}=", binop_to_string(op)),
268
269         /* Structural symbols */
270         token::At                   => "@".to_string(),
271         token::Dot                  => ".".to_string(),
272         token::DotDot               => "..".to_string(),
273         token::DotDotDot            => "...".to_string(),
274         token::DotDotEq             => "..=".to_string(),
275         token::Comma                => ",".to_string(),
276         token::Semi                 => ";".to_string(),
277         token::Colon                => ":".to_string(),
278         token::ModSep               => "::".to_string(),
279         token::RArrow               => "->".to_string(),
280         token::LArrow               => "<-".to_string(),
281         token::FatArrow             => "=>".to_string(),
282         token::OpenDelim(token::Paren) => "(".to_string(),
283         token::CloseDelim(token::Paren) => ")".to_string(),
284         token::OpenDelim(token::Bracket) => "[".to_string(),
285         token::CloseDelim(token::Bracket) => "]".to_string(),
286         token::OpenDelim(token::Brace) => "{".to_string(),
287         token::CloseDelim(token::Brace) => "}".to_string(),
288         token::OpenDelim(token::NoDelim) |
289         token::CloseDelim(token::NoDelim) => " ".to_string(),
290         token::Pound                => "#".to_string(),
291         token::Dollar               => "$".to_string(),
292         token::Question             => "?".to_string(),
293         token::SingleQuote          => "'".to_string(),
294
295         /* Literals */
296         token::Literal(lit) => literal_to_string(lit),
297
298         /* Name components */
299         token::Ident(s, is_raw)     => ident_to_string(s, is_raw, convert_dollar_crate),
300         token::Lifetime(s)          => s.to_string(),
301
302         /* Other */
303         token::DocComment(s)        => s.to_string(),
304         token::Eof                  => "<eof>".to_string(),
305         token::Whitespace           => " ".to_string(),
306         token::Comment              => "/* */".to_string(),
307         token::Shebang(s)           => format!("/* shebang: {}*/", s),
308         token::Unknown(s)           => s.to_string(),
309
310         token::Interpolated(ref nt) => nonterminal_to_string(nt),
311     }
312 }
313
314 /// Print the token precisely, without converting `$crate` into its respective crate name.
315 pub fn token_to_string(token: &Token) -> String {
316     token_to_string_ext(token, false)
317 }
318
319 fn token_to_string_ext(token: &Token, convert_dollar_crate: bool) -> String {
320     let convert_dollar_crate = convert_dollar_crate.then_some(token.span);
321     token_kind_to_string_ext(&token.kind, convert_dollar_crate)
322 }
323
324 pub fn nonterminal_to_string(nt: &Nonterminal) -> String {
325     match *nt {
326         token::NtExpr(ref e)        => expr_to_string(e),
327         token::NtMeta(ref e)        => attr_item_to_string(e),
328         token::NtTy(ref e)          => ty_to_string(e),
329         token::NtPath(ref e)        => path_to_string(e),
330         token::NtItem(ref e)        => item_to_string(e),
331         token::NtBlock(ref e)       => block_to_string(e),
332         token::NtStmt(ref e)        => stmt_to_string(e),
333         token::NtPat(ref e)         => pat_to_string(e),
334         token::NtIdent(e, is_raw)   => ast_ident_to_string(e, is_raw),
335         token::NtLifetime(e)        => e.to_string(),
336         token::NtLiteral(ref e)     => expr_to_string(e),
337         token::NtTT(ref tree)       => tt_to_string(tree.clone()),
338         token::NtImplItem(ref e)    => impl_item_to_string(e),
339         token::NtTraitItem(ref e)   => trait_item_to_string(e),
340         token::NtVis(ref e)         => vis_to_string(e),
341         token::NtForeignItem(ref e) => foreign_item_to_string(e),
342     }
343 }
344
345 pub fn ty_to_string(ty: &ast::Ty) -> String {
346     to_string(|s| s.print_type(ty))
347 }
348
349 pub fn bounds_to_string(bounds: &[ast::GenericBound]) -> String {
350     to_string(|s| s.print_type_bounds("", bounds))
351 }
352
353 pub fn pat_to_string(pat: &ast::Pat) -> String {
354     to_string(|s| s.print_pat(pat))
355 }
356
357 pub fn expr_to_string(e: &ast::Expr) -> String {
358     to_string(|s| s.print_expr(e))
359 }
360
361 pub fn tt_to_string(tt: tokenstream::TokenTree) -> String {
362     to_string(|s| s.print_tt(tt, false))
363 }
364
365 pub fn tts_to_string(tokens: TokenStream) -> String {
366     to_string(|s| s.print_tts(tokens, false))
367 }
368
369 pub fn stmt_to_string(stmt: &ast::Stmt) -> String {
370     to_string(|s| s.print_stmt(stmt))
371 }
372
373 pub fn item_to_string(i: &ast::Item) -> String {
374     to_string(|s| s.print_item(i))
375 }
376
377 fn impl_item_to_string(i: &ast::ImplItem) -> String {
378     to_string(|s| s.print_impl_item(i))
379 }
380
381 fn trait_item_to_string(i: &ast::TraitItem) -> String {
382     to_string(|s| s.print_trait_item(i))
383 }
384
385 pub fn generic_params_to_string(generic_params: &[ast::GenericParam]) -> String {
386     to_string(|s| s.print_generic_params(generic_params))
387 }
388
389 pub fn path_to_string(p: &ast::Path) -> String {
390     to_string(|s| s.print_path(p, false, 0))
391 }
392
393 pub fn path_segment_to_string(p: &ast::PathSegment) -> String {
394     to_string(|s| s.print_path_segment(p, false))
395 }
396
397 pub fn vis_to_string(v: &ast::Visibility) -> String {
398     to_string(|s| s.print_visibility(v))
399 }
400
401 fn block_to_string(blk: &ast::Block) -> String {
402     to_string(|s| {
403         // Containing cbox, will be closed by `print_block` at `}`.
404         s.cbox(INDENT_UNIT);
405         // Head-ibox, will be closed by `print_block` after `{`.
406         s.ibox(0);
407         s.print_block(blk)
408     })
409 }
410
411 pub fn meta_list_item_to_string(li: &ast::NestedMetaItem) -> String {
412     to_string(|s| s.print_meta_list_item(li))
413 }
414
415 fn attr_item_to_string(ai: &ast::AttrItem) -> String {
416     to_string(|s| s.print_attr_item(ai, ai.path.span))
417 }
418
419 pub fn attribute_to_string(attr: &ast::Attribute) -> String {
420     to_string(|s| s.print_attribute(attr))
421 }
422
423 pub fn param_to_string(arg: &ast::Param) -> String {
424     to_string(|s| s.print_param(arg, false))
425 }
426
427 fn foreign_item_to_string(arg: &ast::ForeignItem) -> String {
428     to_string(|s| s.print_foreign_item(arg))
429 }
430
431 fn visibility_qualified(vis: &ast::Visibility, s: &str) -> String {
432     format!("{}{}", to_string(|s| s.print_visibility(vis)), s)
433 }
434
435 impl std::ops::Deref for State<'_> {
436     type Target = pp::Printer;
437     fn deref(&self) -> &Self::Target {
438         &self.s
439     }
440 }
441
442 impl std::ops::DerefMut for State<'_> {
443     fn deref_mut(&mut self) -> &mut Self::Target {
444         &mut self.s
445     }
446 }
447
448 pub trait PrintState<'a>: std::ops::Deref<Target = pp::Printer> + std::ops::DerefMut {
449     fn comments(&mut self) -> &mut Option<Comments<'a>>;
450     fn print_ident(&mut self, ident: ast::Ident);
451     fn print_generic_args(&mut self, args: &ast::GenericArgs, colons_before_params: bool);
452
453     fn strsep<T, F>(&mut self, sep: &'static str, space_before: bool,
454                     b: Breaks, elts: &[T], mut op: F)
455         where F: FnMut(&mut Self, &T),
456     {
457         self.rbox(0, b);
458         if let Some((first, rest)) = elts.split_first() {
459             op(self, first);
460             for elt in rest {
461                 if space_before {
462                     self.space();
463                 }
464                 self.word_space(sep);
465                 op(self, elt);
466             }
467         }
468         self.end();
469     }
470
471     fn commasep<T, F>(&mut self, b: Breaks, elts: &[T], op: F)
472         where F: FnMut(&mut Self, &T),
473     {
474         self.strsep(",", false, b, elts, op)
475     }
476
477     fn maybe_print_comment(&mut self, pos: BytePos) {
478         while let Some(ref cmnt) = self.next_comment() {
479             if cmnt.pos < pos {
480                 self.print_comment(cmnt);
481             } else {
482                 break
483             }
484         }
485     }
486
487     fn print_comment(&mut self,
488                      cmnt: &comments::Comment) {
489         match cmnt.style {
490             comments::Mixed => {
491                 assert_eq!(cmnt.lines.len(), 1);
492                 self.zerobreak();
493                 self.word(cmnt.lines[0].clone());
494                 self.zerobreak()
495             }
496             comments::Isolated => {
497                 self.hardbreak_if_not_bol();
498                 for line in &cmnt.lines {
499                     // Don't print empty lines because they will end up as trailing
500                     // whitespace.
501                     if !line.is_empty() {
502                         self.word(line.clone());
503                     }
504                     self.hardbreak();
505                 }
506             }
507             comments::Trailing => {
508                 if !self.is_beginning_of_line() {
509                     self.word(" ");
510                 }
511                 if cmnt.lines.len() == 1 {
512                     self.word(cmnt.lines[0].clone());
513                     self.hardbreak()
514                 } else {
515                     self.ibox(0);
516                     for line in &cmnt.lines {
517                         if !line.is_empty() {
518                             self.word(line.clone());
519                         }
520                         self.hardbreak();
521                     }
522                     self.end();
523                 }
524             }
525             comments::BlankLine => {
526                 // We need to do at least one, possibly two hardbreaks.
527                 let twice = match self.last_token() {
528                     pp::Token::String(s) => ";" == s,
529                     pp::Token::Begin(_) => true,
530                     pp::Token::End => true,
531                     _ => false
532                 };
533                 if twice {
534                     self.hardbreak();
535                 }
536                 self.hardbreak();
537             }
538         }
539         if let Some(cm) = self.comments() {
540             cm.current += 1;
541         }
542     }
543
544     fn next_comment(&mut self) -> Option<comments::Comment> {
545         self.comments().as_mut().and_then(|c| c.next())
546     }
547
548     fn print_literal(&mut self, lit: &ast::Lit) {
549         self.maybe_print_comment(lit.span.lo());
550         self.word(lit.token.to_string())
551     }
552
553     fn print_string(&mut self, st: &str,
554                     style: ast::StrStyle) {
555         let st = match style {
556             ast::StrStyle::Cooked => {
557                 (format!("\"{}\"", st.escape_debug()))
558             }
559             ast::StrStyle::Raw(n) => {
560                 (format!("r{delim}\"{string}\"{delim}",
561                          delim="#".repeat(n as usize),
562                          string=st))
563             }
564         };
565         self.word(st)
566     }
567
568     fn print_inner_attributes(&mut self,
569                               attrs: &[ast::Attribute]) {
570         self.print_either_attributes(attrs, ast::AttrStyle::Inner, false, true)
571     }
572
573     fn print_inner_attributes_no_trailing_hardbreak(&mut self,
574                                                    attrs: &[ast::Attribute])
575                                                    {
576         self.print_either_attributes(attrs, ast::AttrStyle::Inner, false, false)
577     }
578
579     fn print_outer_attributes(&mut self,
580                               attrs: &[ast::Attribute]) {
581         self.print_either_attributes(attrs, ast::AttrStyle::Outer, false, true)
582     }
583
584     fn print_inner_attributes_inline(&mut self,
585                                      attrs: &[ast::Attribute]) {
586         self.print_either_attributes(attrs, ast::AttrStyle::Inner, true, true)
587     }
588
589     fn print_outer_attributes_inline(&mut self,
590                                      attrs: &[ast::Attribute]) {
591         self.print_either_attributes(attrs, ast::AttrStyle::Outer, true, true)
592     }
593
594     fn print_either_attributes(&mut self,
595                               attrs: &[ast::Attribute],
596                               kind: ast::AttrStyle,
597                               is_inline: bool,
598                               trailing_hardbreak: bool) {
599         let mut count = 0;
600         for attr in attrs {
601             if attr.style == kind {
602                 self.print_attribute_inline(attr, is_inline);
603                 if is_inline {
604                     self.nbsp();
605                 }
606                 count += 1;
607             }
608         }
609         if count > 0 && trailing_hardbreak && !is_inline {
610             self.hardbreak_if_not_bol();
611         }
612     }
613
614     fn print_attribute(&mut self, attr: &ast::Attribute) {
615         self.print_attribute_inline(attr, false)
616     }
617
618     fn print_attribute_inline(&mut self, attr: &ast::Attribute,
619                               is_inline: bool) {
620         if !is_inline {
621             self.hardbreak_if_not_bol();
622         }
623         self.maybe_print_comment(attr.span.lo());
624         match attr.kind {
625             ast::AttrKind::Normal(ref item) => {
626                 match attr.style {
627                     ast::AttrStyle::Inner => self.word("#!["),
628                     ast::AttrStyle::Outer => self.word("#["),
629                 }
630                 self.print_attr_item(&item, attr.span);
631                 self.word("]");
632             }
633             ast::AttrKind::DocComment(comment) => {
634                 self.word(comment.to_string());
635                 self.hardbreak()
636             }
637         }
638     }
639
640     fn print_attr_item(&mut self, item: &ast::AttrItem, span: Span) {
641         self.ibox(0);
642         match &item.args {
643             MacArgs::Delimited(_, delim, tokens) => self.print_mac_common(
644                 Some(MacHeader::Path(&item.path)),
645                 false,
646                 None,
647                 delim.to_token(),
648                 tokens.clone(),
649                 true,
650                 span,
651             ),
652             MacArgs::Empty | MacArgs::Eq(..) => {
653                 self.print_path(&item.path, false, 0);
654                 if let MacArgs::Eq(_, tokens) = &item.args {
655                     self.space();
656                     self.word_space("=");
657                     self.print_tts(tokens.clone(), true);
658                 }
659             }
660         }
661         self.end();
662     }
663
664     fn print_meta_list_item(&mut self, item: &ast::NestedMetaItem) {
665         match item {
666             ast::NestedMetaItem::MetaItem(ref mi) => {
667                 self.print_meta_item(mi)
668             },
669             ast::NestedMetaItem::Literal(ref lit) => {
670                 self.print_literal(lit)
671             }
672         }
673     }
674
675     fn print_meta_item(&mut self, item: &ast::MetaItem) {
676         self.ibox(INDENT_UNIT);
677         match item.kind {
678             ast::MetaItemKind::Word => self.print_path(&item.path, false, 0),
679             ast::MetaItemKind::NameValue(ref value) => {
680                 self.print_path(&item.path, false, 0);
681                 self.space();
682                 self.word_space("=");
683                 self.print_literal(value);
684             }
685             ast::MetaItemKind::List(ref items) => {
686                 self.print_path(&item.path, false, 0);
687                 self.popen();
688                 self.commasep(Consistent,
689                               &items[..],
690                               |s, i| s.print_meta_list_item(i));
691                 self.pclose();
692             }
693         }
694         self.end();
695     }
696
697     /// This doesn't deserve to be called "pretty" printing, but it should be
698     /// meaning-preserving. A quick hack that might help would be to look at the
699     /// spans embedded in the TTs to decide where to put spaces and newlines.
700     /// But it'd be better to parse these according to the grammar of the
701     /// appropriate macro, transcribe back into the grammar we just parsed from,
702     /// and then pretty-print the resulting AST nodes (so, e.g., we print
703     /// expression arguments as expressions). It can be done! I think.
704     fn print_tt(&mut self, tt: tokenstream::TokenTree, convert_dollar_crate: bool) {
705         match tt {
706             TokenTree::Token(ref token) => {
707                 self.word(token_to_string_ext(&token, convert_dollar_crate));
708                 match token.kind {
709                     token::DocComment(..) => {
710                         self.hardbreak()
711                     }
712                     _ => {}
713                 }
714             }
715             TokenTree::Delimited(dspan, delim, tts) => {
716                 self.print_mac_common(
717                     None, false, None, delim, tts, convert_dollar_crate, dspan.entire()
718                 );
719             }
720         }
721     }
722
723     fn print_tts(&mut self, tts: tokenstream::TokenStream, convert_dollar_crate: bool) {
724         for (i, tt) in tts.into_trees().enumerate() {
725             if i != 0 && tt_prepend_space(&tt) {
726                 self.space();
727             }
728             self.print_tt(tt, convert_dollar_crate);
729         }
730     }
731
732     fn print_mac_common(
733         &mut self,
734         header: Option<MacHeader<'_>>,
735         has_bang: bool,
736         ident: Option<ast::Ident>,
737         delim: DelimToken,
738         tts: TokenStream,
739         convert_dollar_crate: bool,
740         span: Span,
741     ) {
742         if delim == DelimToken::Brace {
743             self.cbox(INDENT_UNIT);
744         }
745         match header {
746             Some(MacHeader::Path(path)) => self.print_path(path, false, 0),
747             Some(MacHeader::Keyword(kw)) => self.word(kw),
748             None => {}
749         }
750         if has_bang {
751             self.word("!");
752         }
753         if let Some(ident) = ident {
754             self.nbsp();
755             self.print_ident(ident);
756         }
757         match delim {
758             DelimToken::Brace => {
759                 if header.is_some() || has_bang || ident.is_some() {
760                     self.nbsp();
761                 }
762                 self.word("{");
763                 if !tts.is_empty() {
764                     self.space();
765                 }
766             }
767             _ => self.word(token_kind_to_string(&token::OpenDelim(delim))),
768         }
769         self.ibox(0);
770         self.print_tts(tts, convert_dollar_crate);
771         self.end();
772         match delim {
773             DelimToken::Brace => self.bclose(span),
774             _ => self.word(token_kind_to_string(&token::CloseDelim(delim))),
775         }
776     }
777
778     fn print_path(&mut self, path: &ast::Path, colons_before_params: bool, depth: usize) {
779         self.maybe_print_comment(path.span.lo());
780
781         for (i, segment) in path.segments[..path.segments.len() - depth].iter().enumerate() {
782             if i > 0 {
783                 self.word("::")
784             }
785             self.print_path_segment(segment, colons_before_params);
786         }
787     }
788
789     fn print_path_segment(&mut self, segment: &ast::PathSegment, colons_before_params: bool) {
790         if segment.ident.name != kw::PathRoot {
791             self.print_ident(segment.ident);
792             if let Some(ref args) = segment.args {
793                 self.print_generic_args(args, colons_before_params);
794             }
795         }
796     }
797
798     fn head<S: Into<Cow<'static, str>>>(&mut self, w: S) {
799         let w = w.into();
800         // Outer-box is consistent.
801         self.cbox(INDENT_UNIT);
802         // Head-box is inconsistent.
803         self.ibox(w.len() + 1);
804         // Keyword that starts the head.
805         if !w.is_empty() {
806             self.word_nbsp(w);
807         }
808     }
809
810     fn bopen(&mut self) {
811         self.word("{");
812         self.end(); // Close the head-box.
813     }
814
815     fn bclose_maybe_open(&mut self, span: syntax_pos::Span, close_box: bool) {
816         self.maybe_print_comment(span.hi());
817         self.break_offset_if_not_bol(1, -(INDENT_UNIT as isize));
818         self.word("}");
819         if close_box {
820             self.end(); // Close the outer-box.
821         }
822     }
823
824     fn bclose(&mut self, span: syntax_pos::Span) {
825         self.bclose_maybe_open(span, true)
826     }
827
828     fn break_offset_if_not_bol(&mut self, n: usize, off: isize) {
829         if !self.is_beginning_of_line() {
830             self.break_offset(n, off)
831         } else {
832             if off != 0 && self.last_token().is_hardbreak_tok() {
833                 // We do something pretty sketchy here: tuck the nonzero
834                 // offset-adjustment we were going to deposit along with the
835                 // break into the previous hardbreak.
836                 self.replace_last_token(pp::Printer::hardbreak_tok_offset(off));
837             }
838         }
839     }
840 }
841
842 impl<'a> PrintState<'a> for State<'a> {
843     fn comments(&mut self) -> &mut Option<Comments<'a>> {
844         &mut self.comments
845     }
846
847     fn print_ident(&mut self, ident: ast::Ident) {
848         self.s.word(ast_ident_to_string(ident, ident.is_raw_guess()));
849         self.ann.post(self, AnnNode::Ident(&ident))
850     }
851
852     fn print_generic_args(&mut self, args: &ast::GenericArgs, colons_before_params: bool) {
853         if colons_before_params {
854             self.s.word("::")
855         }
856
857         match *args {
858             ast::GenericArgs::AngleBracketed(ref data) => {
859                 self.s.word("<");
860
861                 self.commasep(Inconsistent, &data.args, |s, generic_arg| {
862                     s.print_generic_arg(generic_arg)
863                 });
864
865                 let mut comma = data.args.len() != 0;
866
867                 for constraint in data.constraints.iter() {
868                     if comma {
869                         self.word_space(",")
870                     }
871                     self.print_ident(constraint.ident);
872                     self.s.space();
873                     match constraint.kind {
874                         ast::AssocTyConstraintKind::Equality { ref ty } => {
875                             self.word_space("=");
876                             self.print_type(ty);
877                         }
878                         ast::AssocTyConstraintKind::Bound { ref bounds } => {
879                             self.print_type_bounds(":", &*bounds);
880                         }
881                     }
882                     comma = true;
883                 }
884
885                 self.s.word(">")
886             }
887
888             ast::GenericArgs::Parenthesized(ref data) => {
889                 self.s.word("(");
890                 self.commasep(
891                     Inconsistent,
892                     &data.inputs,
893                     |s, ty| s.print_type(ty));
894                 self.s.word(")");
895
896                 if let Some(ref ty) = data.output {
897                     self.space_if_not_bol();
898                     self.word_space("->");
899                     self.print_type(ty);
900                 }
901             }
902         }
903     }
904 }
905
906 impl<'a> State<'a> {
907     // Synthesizes a comment that was not textually present in the original source
908     // file.
909     pub fn synth_comment(&mut self, text: String) {
910         self.s.word("/*");
911         self.s.space();
912         self.s.word(text);
913         self.s.space();
914         self.s.word("*/")
915     }
916
917     crate fn commasep_cmnt<T, F, G>(&mut self,
918                                   b: Breaks,
919                                   elts: &[T],
920                                   mut op: F,
921                                   mut get_span: G) where
922         F: FnMut(&mut State<'_>, &T),
923         G: FnMut(&T) -> syntax_pos::Span,
924     {
925         self.rbox(0, b);
926         let len = elts.len();
927         let mut i = 0;
928         for elt in elts {
929             self.maybe_print_comment(get_span(elt).hi());
930             op(self, elt);
931             i += 1;
932             if i < len {
933                 self.s.word(",");
934                 self.maybe_print_trailing_comment(get_span(elt),
935                                                   Some(get_span(&elts[i]).hi()));
936                 self.space_if_not_bol();
937             }
938         }
939         self.end();
940     }
941
942     crate fn commasep_exprs(&mut self, b: Breaks,
943                             exprs: &[P<ast::Expr>]) {
944         self.commasep_cmnt(b, exprs, |s, e| s.print_expr(e), |e| e.span)
945     }
946
947     pub fn print_mod(
948         &mut self,
949         _mod: &ast::Mod,
950         attrs: &[ast::Attribute],
951     ) {
952         self.print_inner_attributes(attrs);
953         for item in &_mod.items {
954             self.print_item(item);
955         }
956     }
957
958     crate fn print_foreign_mod(&mut self, nmod: &ast::ForeignMod,
959                                attrs: &[ast::Attribute]) {
960         self.print_inner_attributes(attrs);
961         for item in &nmod.items {
962             self.print_foreign_item(item);
963         }
964     }
965
966     pub fn print_opt_lifetime(&mut self, lifetime: &Option<ast::Lifetime>) {
967         if let Some(lt) = *lifetime {
968             self.print_lifetime(lt);
969             self.nbsp();
970         }
971     }
972
973     crate fn print_generic_arg(&mut self, generic_arg: &GenericArg) {
974         match generic_arg {
975             GenericArg::Lifetime(lt) => self.print_lifetime(*lt),
976             GenericArg::Type(ty) => self.print_type(ty),
977             GenericArg::Const(ct) => self.print_expr(&ct.value),
978         }
979     }
980
981     pub fn print_type(&mut self, ty: &ast::Ty) {
982         self.maybe_print_comment(ty.span.lo());
983         self.ibox(0);
984         match ty.kind {
985             ast::TyKind::Slice(ref ty) => {
986                 self.s.word("[");
987                 self.print_type(ty);
988                 self.s.word("]");
989             }
990             ast::TyKind::Ptr(ref mt) => {
991                 self.s.word("*");
992                 self.print_mt(mt, true);
993             }
994             ast::TyKind::Rptr(ref lifetime, ref mt) => {
995                 self.s.word("&");
996                 self.print_opt_lifetime(lifetime);
997                 self.print_mt(mt, false);
998             }
999             ast::TyKind::Never => {
1000                 self.s.word("!");
1001             },
1002             ast::TyKind::Tup(ref elts) => {
1003                 self.popen();
1004                 self.commasep(Inconsistent, &elts[..],
1005                               |s, ty| s.print_type(ty));
1006                 if elts.len() == 1 {
1007                     self.s.word(",");
1008                 }
1009                 self.pclose();
1010             }
1011             ast::TyKind::Paren(ref typ) => {
1012                 self.popen();
1013                 self.print_type(typ);
1014                 self.pclose();
1015             }
1016             ast::TyKind::BareFn(ref f) => {
1017                 self.print_ty_fn(f.ext,
1018                                  f.unsafety,
1019                                  &f.decl,
1020                                  None,
1021                                  &f.generic_params);
1022             }
1023             ast::TyKind::Path(None, ref path) => {
1024                 self.print_path(path, false, 0);
1025             }
1026             ast::TyKind::Path(Some(ref qself), ref path) => {
1027                 self.print_qpath(path, qself, false)
1028             }
1029             ast::TyKind::TraitObject(ref bounds, syntax) => {
1030                 let prefix = if syntax == ast::TraitObjectSyntax::Dyn { "dyn" } else { "" };
1031                 self.print_type_bounds(prefix, &bounds[..]);
1032             }
1033             ast::TyKind::ImplTrait(_, ref bounds) => {
1034                 self.print_type_bounds("impl", &bounds[..]);
1035             }
1036             ast::TyKind::Array(ref ty, ref length) => {
1037                 self.s.word("[");
1038                 self.print_type(ty);
1039                 self.s.word("; ");
1040                 self.print_expr(&length.value);
1041                 self.s.word("]");
1042             }
1043             ast::TyKind::Typeof(ref e) => {
1044                 self.s.word("typeof(");
1045                 self.print_expr(&e.value);
1046                 self.s.word(")");
1047             }
1048             ast::TyKind::Infer => {
1049                 self.s.word("_");
1050             }
1051             ast::TyKind::Err => {
1052                 self.popen();
1053                 self.s.word("/*ERROR*/");
1054                 self.pclose();
1055             }
1056             ast::TyKind::ImplicitSelf => {
1057                 self.s.word("Self");
1058             }
1059             ast::TyKind::Mac(ref m) => {
1060                 self.print_mac(m);
1061             }
1062             ast::TyKind::CVarArgs => {
1063                 self.s.word("...");
1064             }
1065         }
1066         self.end();
1067     }
1068
1069     crate fn print_foreign_item(&mut self,
1070                               item: &ast::ForeignItem) {
1071         self.hardbreak_if_not_bol();
1072         self.maybe_print_comment(item.span.lo());
1073         self.print_outer_attributes(&item.attrs);
1074         match item.kind {
1075             ast::ForeignItemKind::Fn(ref decl, ref generics) => {
1076                 self.head("");
1077                 self.print_fn(decl, ast::FnHeader::default(),
1078                               Some(item.ident),
1079                               generics, &item.vis);
1080                 self.end(); // end head-ibox
1081                 self.s.word(";");
1082                 self.end(); // end the outer fn box
1083             }
1084             ast::ForeignItemKind::Static(ref t, m) => {
1085                 self.head(visibility_qualified(&item.vis, "static"));
1086                 if m == ast::Mutability::Mutable {
1087                     self.word_space("mut");
1088                 }
1089                 self.print_ident(item.ident);
1090                 self.word_space(":");
1091                 self.print_type(t);
1092                 self.s.word(";");
1093                 self.end(); // end the head-ibox
1094                 self.end(); // end the outer cbox
1095             }
1096             ast::ForeignItemKind::Ty => {
1097                 self.head(visibility_qualified(&item.vis, "type"));
1098                 self.print_ident(item.ident);
1099                 self.s.word(";");
1100                 self.end(); // end the head-ibox
1101                 self.end(); // end the outer cbox
1102             }
1103             ast::ForeignItemKind::Macro(ref m) => {
1104                 self.print_mac(m);
1105                 if m.args.need_semicolon() {
1106                     self.s.word(";");
1107                 }
1108             }
1109         }
1110     }
1111
1112     fn print_associated_const(&mut self,
1113                               ident: ast::Ident,
1114                               ty: &ast::Ty,
1115                               default: Option<&ast::Expr>,
1116                               vis: &ast::Visibility)
1117     {
1118         self.s.word(visibility_qualified(vis, ""));
1119         self.word_space("const");
1120         self.print_ident(ident);
1121         self.word_space(":");
1122         self.print_type(ty);
1123         if let Some(expr) = default {
1124             self.s.space();
1125             self.word_space("=");
1126             self.print_expr(expr);
1127         }
1128         self.s.word(";")
1129     }
1130
1131     fn print_associated_type(&mut self,
1132                              ident: ast::Ident,
1133                              bounds: Option<&ast::GenericBounds>,
1134                              ty: Option<&ast::Ty>)
1135                              {
1136         self.word_space("type");
1137         self.print_ident(ident);
1138         if let Some(bounds) = bounds {
1139             self.print_type_bounds(":", bounds);
1140         }
1141         if let Some(ty) = ty {
1142             self.s.space();
1143             self.word_space("=");
1144             self.print_type(ty);
1145         }
1146         self.s.word(";")
1147     }
1148
1149     /// Pretty-prints an item.
1150     crate fn print_item(&mut self, item: &ast::Item) {
1151         self.hardbreak_if_not_bol();
1152         self.maybe_print_comment(item.span.lo());
1153         self.print_outer_attributes(&item.attrs);
1154         self.ann.pre(self, AnnNode::Item(item));
1155         match item.kind {
1156             ast::ItemKind::ExternCrate(orig_name) => {
1157                 self.head(visibility_qualified(&item.vis, "extern crate"));
1158                 if let Some(orig_name) = orig_name {
1159                     self.print_name(orig_name);
1160                     self.s.space();
1161                     self.s.word("as");
1162                     self.s.space();
1163                 }
1164                 self.print_ident(item.ident);
1165                 self.s.word(";");
1166                 self.end(); // end inner head-block
1167                 self.end(); // end outer head-block
1168             }
1169             ast::ItemKind::Use(ref tree) => {
1170                 self.head(visibility_qualified(&item.vis, "use"));
1171                 self.print_use_tree(tree);
1172                 self.s.word(";");
1173                 self.end(); // end inner head-block
1174                 self.end(); // end outer head-block
1175             }
1176             ast::ItemKind::Static(ref ty, m, ref expr) => {
1177                 self.head(visibility_qualified(&item.vis, "static"));
1178                 if m == ast::Mutability::Mutable {
1179                     self.word_space("mut");
1180                 }
1181                 self.print_ident(item.ident);
1182                 self.word_space(":");
1183                 self.print_type(ty);
1184                 self.s.space();
1185                 self.end(); // end the head-ibox
1186
1187                 self.word_space("=");
1188                 self.print_expr(expr);
1189                 self.s.word(";");
1190                 self.end(); // end the outer cbox
1191             }
1192             ast::ItemKind::Const(ref ty, ref expr) => {
1193                 self.head(visibility_qualified(&item.vis, "const"));
1194                 self.print_ident(item.ident);
1195                 self.word_space(":");
1196                 self.print_type(ty);
1197                 self.s.space();
1198                 self.end(); // end the head-ibox
1199
1200                 self.word_space("=");
1201                 self.print_expr(expr);
1202                 self.s.word(";");
1203                 self.end(); // end the outer cbox
1204             }
1205             ast::ItemKind::Fn(ref sig, ref param_names, ref body) => {
1206                 self.head("");
1207                 self.print_fn(
1208                     &sig.decl,
1209                     sig.header,
1210                     Some(item.ident),
1211                     param_names,
1212                     &item.vis
1213                 );
1214                 self.s.word(" ");
1215                 self.print_block_with_attrs(body, &item.attrs);
1216             }
1217             ast::ItemKind::Mod(ref _mod) => {
1218                 self.head(visibility_qualified(&item.vis, "mod"));
1219                 self.print_ident(item.ident);
1220
1221                 if _mod.inline || self.is_expanded {
1222                     self.nbsp();
1223                     self.bopen();
1224                     self.print_mod(_mod, &item.attrs);
1225                     self.bclose(item.span);
1226                 } else {
1227                     self.s.word(";");
1228                     self.end(); // end inner head-block
1229                     self.end(); // end outer head-block
1230                 }
1231
1232             }
1233             ast::ItemKind::ForeignMod(ref nmod) => {
1234                 self.head("extern");
1235                 if let Some(abi) = nmod.abi {
1236                     self.print_literal(&abi.as_lit());
1237                     self.nbsp();
1238                 }
1239                 self.bopen();
1240                 self.print_foreign_mod(nmod, &item.attrs);
1241                 self.bclose(item.span);
1242             }
1243             ast::ItemKind::GlobalAsm(ref ga) => {
1244                 self.head(visibility_qualified(&item.vis, "global_asm!"));
1245                 self.s.word(ga.asm.to_string());
1246                 self.end();
1247             }
1248             ast::ItemKind::TyAlias(ref ty, ref generics) => {
1249                 self.head(visibility_qualified(&item.vis, "type"));
1250                 self.print_ident(item.ident);
1251                 self.print_generic_params(&generics.params);
1252                 self.end(); // end the inner ibox
1253
1254                 self.print_where_clause(&generics.where_clause);
1255                 self.s.space();
1256                 self.word_space("=");
1257                 self.print_type(ty);
1258                 self.s.word(";");
1259                 self.end(); // end the outer ibox
1260             }
1261             ast::ItemKind::Enum(ref enum_definition, ref params) => {
1262                 self.print_enum_def(
1263                     enum_definition,
1264                     params,
1265                     item.ident,
1266                     item.span,
1267                     &item.vis
1268                 );
1269             }
1270             ast::ItemKind::Struct(ref struct_def, ref generics) => {
1271                 self.head(visibility_qualified(&item.vis, "struct"));
1272                 self.print_struct(struct_def, generics, item.ident, item.span, true);
1273             }
1274             ast::ItemKind::Union(ref struct_def, ref generics) => {
1275                 self.head(visibility_qualified(&item.vis, "union"));
1276                 self.print_struct(struct_def, generics, item.ident, item.span, true);
1277             }
1278             ast::ItemKind::Impl(unsafety,
1279                           polarity,
1280                           defaultness,
1281                           ref generics,
1282                           ref opt_trait,
1283                           ref ty,
1284                           ref impl_items) => {
1285                 self.head("");
1286                 self.print_visibility(&item.vis);
1287                 self.print_defaultness(defaultness);
1288                 self.print_unsafety(unsafety);
1289                 self.word_nbsp("impl");
1290
1291                 if !generics.params.is_empty() {
1292                     self.print_generic_params(&generics.params);
1293                     self.s.space();
1294                 }
1295
1296                 if polarity == ast::ImplPolarity::Negative {
1297                     self.s.word("!");
1298                 }
1299
1300                 if let Some(ref t) = *opt_trait {
1301                     self.print_trait_ref(t);
1302                     self.s.space();
1303                     self.word_space("for");
1304                 }
1305
1306                 self.print_type(ty);
1307                 self.print_where_clause(&generics.where_clause);
1308
1309                 self.s.space();
1310                 self.bopen();
1311                 self.print_inner_attributes(&item.attrs);
1312                 for impl_item in impl_items {
1313                     self.print_impl_item(impl_item);
1314                 }
1315                 self.bclose(item.span);
1316             }
1317             ast::ItemKind::Trait(is_auto, unsafety, ref generics, ref bounds, ref trait_items) => {
1318                 self.head("");
1319                 self.print_visibility(&item.vis);
1320                 self.print_unsafety(unsafety);
1321                 self.print_is_auto(is_auto);
1322                 self.word_nbsp("trait");
1323                 self.print_ident(item.ident);
1324                 self.print_generic_params(&generics.params);
1325                 let mut real_bounds = Vec::with_capacity(bounds.len());
1326                 for b in bounds.iter() {
1327                     if let GenericBound::Trait(ref ptr, ast::TraitBoundModifier::Maybe) = *b {
1328                         self.s.space();
1329                         self.word_space("for ?");
1330                         self.print_trait_ref(&ptr.trait_ref);
1331                     } else {
1332                         real_bounds.push(b.clone());
1333                     }
1334                 }
1335                 self.print_type_bounds(":", &real_bounds[..]);
1336                 self.print_where_clause(&generics.where_clause);
1337                 self.s.word(" ");
1338                 self.bopen();
1339                 for trait_item in trait_items {
1340                     self.print_trait_item(trait_item);
1341                 }
1342                 self.bclose(item.span);
1343             }
1344             ast::ItemKind::TraitAlias(ref generics, ref bounds) => {
1345                 self.head("");
1346                 self.print_visibility(&item.vis);
1347                 self.word_nbsp("trait");
1348                 self.print_ident(item.ident);
1349                 self.print_generic_params(&generics.params);
1350                 let mut real_bounds = Vec::with_capacity(bounds.len());
1351                 // FIXME(durka) this seems to be some quite outdated syntax
1352                 for b in bounds.iter() {
1353                     if let GenericBound::Trait(ref ptr, ast::TraitBoundModifier::Maybe) = *b {
1354                         self.s.space();
1355                         self.word_space("for ?");
1356                         self.print_trait_ref(&ptr.trait_ref);
1357                     } else {
1358                         real_bounds.push(b.clone());
1359                     }
1360                 }
1361                 self.nbsp();
1362                 self.print_type_bounds("=", &real_bounds[..]);
1363                 self.print_where_clause(&generics.where_clause);
1364                 self.s.word(";");
1365             }
1366             ast::ItemKind::Mac(ref mac) => {
1367                 self.print_mac(mac);
1368                 if mac.args.need_semicolon() {
1369                     self.s.word(";");
1370                 }
1371             }
1372             ast::ItemKind::MacroDef(ref macro_def) => {
1373                 let (kw, has_bang) = if macro_def.legacy {
1374                     ("macro_rules", true)
1375                 } else {
1376                     self.print_visibility(&item.vis);
1377                     ("macro", false)
1378                 };
1379                 self.print_mac_common(
1380                     Some(MacHeader::Keyword(kw)),
1381                     has_bang,
1382                     Some(item.ident),
1383                     macro_def.body.delim(),
1384                     macro_def.body.inner_tokens(),
1385                     true,
1386                     item.span,
1387                 );
1388             }
1389         }
1390         self.ann.post(self, AnnNode::Item(item))
1391     }
1392
1393     fn print_trait_ref(&mut self, t: &ast::TraitRef) {
1394         self.print_path(&t.path, false, 0)
1395     }
1396
1397     fn print_formal_generic_params(
1398         &mut self,
1399         generic_params: &[ast::GenericParam]
1400     ) {
1401         if !generic_params.is_empty() {
1402             self.s.word("for");
1403             self.print_generic_params(generic_params);
1404             self.nbsp();
1405         }
1406     }
1407
1408     fn print_poly_trait_ref(&mut self, t: &ast::PolyTraitRef) {
1409         self.print_formal_generic_params(&t.bound_generic_params);
1410         self.print_trait_ref(&t.trait_ref)
1411     }
1412
1413     crate fn print_enum_def(&mut self, enum_definition: &ast::EnumDef,
1414                           generics: &ast::Generics, ident: ast::Ident,
1415                           span: syntax_pos::Span,
1416                           visibility: &ast::Visibility) {
1417         self.head(visibility_qualified(visibility, "enum"));
1418         self.print_ident(ident);
1419         self.print_generic_params(&generics.params);
1420         self.print_where_clause(&generics.where_clause);
1421         self.s.space();
1422         self.print_variants(&enum_definition.variants, span)
1423     }
1424
1425     crate fn print_variants(&mut self,
1426                           variants: &[ast::Variant],
1427                           span: syntax_pos::Span) {
1428         self.bopen();
1429         for v in variants {
1430             self.space_if_not_bol();
1431             self.maybe_print_comment(v.span.lo());
1432             self.print_outer_attributes(&v.attrs);
1433             self.ibox(INDENT_UNIT);
1434             self.print_variant(v);
1435             self.s.word(",");
1436             self.end();
1437             self.maybe_print_trailing_comment(v.span, None);
1438         }
1439         self.bclose(span)
1440     }
1441
1442     crate fn print_visibility(&mut self, vis: &ast::Visibility) {
1443         match vis.node {
1444             ast::VisibilityKind::Public => self.word_nbsp("pub"),
1445             ast::VisibilityKind::Crate(sugar) => match sugar {
1446                 ast::CrateSugar::PubCrate => self.word_nbsp("pub(crate)"),
1447                 ast::CrateSugar::JustCrate => self.word_nbsp("crate")
1448             }
1449             ast::VisibilityKind::Restricted { ref path, .. } => {
1450                 let path = to_string(|s| s.print_path(path, false, 0));
1451                 if path == "self" || path == "super" {
1452                     self.word_nbsp(format!("pub({})", path))
1453                 } else {
1454                     self.word_nbsp(format!("pub(in {})", path))
1455                 }
1456             }
1457             ast::VisibilityKind::Inherited => {}
1458         }
1459     }
1460
1461     crate fn print_defaultness(&mut self, defaultness: ast::Defaultness) {
1462         if let ast::Defaultness::Default = defaultness {
1463             self.word_nbsp("default");
1464         }
1465     }
1466
1467     crate fn print_struct(&mut self,
1468                         struct_def: &ast::VariantData,
1469                         generics: &ast::Generics,
1470                         ident: ast::Ident,
1471                         span: syntax_pos::Span,
1472                         print_finalizer: bool) {
1473         self.print_ident(ident);
1474         self.print_generic_params(&generics.params);
1475         match struct_def {
1476             ast::VariantData::Tuple(..) | ast::VariantData::Unit(..) => {
1477                 if let ast::VariantData::Tuple(..) = struct_def {
1478                     self.popen();
1479                     self.commasep(
1480                         Inconsistent, struct_def.fields(),
1481                         |s, field| {
1482                             s.maybe_print_comment(field.span.lo());
1483                             s.print_outer_attributes(&field.attrs);
1484                             s.print_visibility(&field.vis);
1485                             s.print_type(&field.ty)
1486                         }
1487                     );
1488                     self.pclose();
1489                 }
1490                 self.print_where_clause(&generics.where_clause);
1491                 if print_finalizer {
1492                     self.s.word(";");
1493                 }
1494                 self.end();
1495                 self.end(); // Close the outer-box.
1496             }
1497             ast::VariantData::Struct(..) => {
1498                 self.print_where_clause(&generics.where_clause);
1499                 self.nbsp();
1500                 self.bopen();
1501                 self.hardbreak_if_not_bol();
1502
1503                 for field in struct_def.fields() {
1504                     self.hardbreak_if_not_bol();
1505                     self.maybe_print_comment(field.span.lo());
1506                     self.print_outer_attributes(&field.attrs);
1507                     self.print_visibility(&field.vis);
1508                     self.print_ident(field.ident.unwrap());
1509                     self.word_nbsp(":");
1510                     self.print_type(&field.ty);
1511                     self.s.word(",");
1512                 }
1513
1514                 self.bclose(span)
1515             }
1516         }
1517     }
1518
1519     crate fn print_variant(&mut self, v: &ast::Variant) {
1520         self.head("");
1521         self.print_visibility(&v.vis);
1522         let generics = ast::Generics::default();
1523         self.print_struct(&v.data, &generics, v.ident, v.span, false);
1524         match v.disr_expr {
1525             Some(ref d) => {
1526                 self.s.space();
1527                 self.word_space("=");
1528                 self.print_expr(&d.value)
1529             }
1530             _ => {}
1531         }
1532     }
1533
1534     crate fn print_method_sig(&mut self,
1535                             ident: ast::Ident,
1536                             generics: &ast::Generics,
1537                             m: &ast::FnSig,
1538                             vis: &ast::Visibility)
1539                             {
1540         self.print_fn(&m.decl,
1541                       m.header,
1542                       Some(ident),
1543                       &generics,
1544                       vis)
1545     }
1546
1547     crate fn print_trait_item(&mut self, ti: &ast::TraitItem)
1548                             {
1549         self.ann.pre(self, AnnNode::SubItem(ti.id));
1550         self.hardbreak_if_not_bol();
1551         self.maybe_print_comment(ti.span.lo());
1552         self.print_outer_attributes(&ti.attrs);
1553         match ti.kind {
1554             ast::TraitItemKind::Const(ref ty, ref default) => {
1555                 self.print_associated_const(
1556                     ti.ident,
1557                     ty,
1558                     default.as_ref().map(|expr| &**expr),
1559                     &source_map::respan(ti.span.shrink_to_lo(), ast::VisibilityKind::Inherited),
1560                 );
1561             }
1562             ast::TraitItemKind::Method(ref sig, ref body) => {
1563                 if body.is_some() {
1564                     self.head("");
1565                 }
1566                 self.print_method_sig(
1567                     ti.ident,
1568                     &ti.generics,
1569                     sig,
1570                     &source_map::respan(ti.span.shrink_to_lo(), ast::VisibilityKind::Inherited),
1571                 );
1572                 if let Some(ref body) = *body {
1573                     self.nbsp();
1574                     self.print_block_with_attrs(body, &ti.attrs);
1575                 } else {
1576                     self.s.word(";");
1577                 }
1578             }
1579             ast::TraitItemKind::Type(ref bounds, ref default) => {
1580                 self.print_associated_type(ti.ident, Some(bounds),
1581                                            default.as_ref().map(|ty| &**ty));
1582             }
1583             ast::TraitItemKind::Macro(ref mac) => {
1584                 self.print_mac(mac);
1585                 if mac.args.need_semicolon() {
1586                     self.s.word(";");
1587                 }
1588             }
1589         }
1590         self.ann.post(self, AnnNode::SubItem(ti.id))
1591     }
1592
1593     crate fn print_impl_item(&mut self, ii: &ast::ImplItem) {
1594         self.ann.pre(self, AnnNode::SubItem(ii.id));
1595         self.hardbreak_if_not_bol();
1596         self.maybe_print_comment(ii.span.lo());
1597         self.print_outer_attributes(&ii.attrs);
1598         self.print_defaultness(ii.defaultness);
1599         match ii.kind {
1600             ast::ImplItemKind::Const(ref ty, ref expr) => {
1601                 self.print_associated_const(ii.ident, ty, Some(expr), &ii.vis);
1602             }
1603             ast::ImplItemKind::Method(ref sig, ref body) => {
1604                 self.head("");
1605                 self.print_method_sig(ii.ident, &ii.generics, sig, &ii.vis);
1606                 self.nbsp();
1607                 self.print_block_with_attrs(body, &ii.attrs);
1608             }
1609             ast::ImplItemKind::TyAlias(ref ty) => {
1610                 self.print_associated_type(ii.ident, None, Some(ty));
1611             }
1612             ast::ImplItemKind::Macro(ref mac) => {
1613                 self.print_mac(mac);
1614                 if mac.args.need_semicolon() {
1615                     self.s.word(";");
1616                 }
1617             }
1618         }
1619         self.ann.post(self, AnnNode::SubItem(ii.id))
1620     }
1621
1622     crate fn print_stmt(&mut self, st: &ast::Stmt) {
1623         self.maybe_print_comment(st.span.lo());
1624         match st.kind {
1625             ast::StmtKind::Local(ref loc) => {
1626                 self.print_outer_attributes(&loc.attrs);
1627                 self.space_if_not_bol();
1628                 self.ibox(INDENT_UNIT);
1629                 self.word_nbsp("let");
1630
1631                 self.ibox(INDENT_UNIT);
1632                 self.print_local_decl(loc);
1633                 self.end();
1634                 if let Some(ref init) = loc.init {
1635                     self.nbsp();
1636                     self.word_space("=");
1637                     self.print_expr(init);
1638                 }
1639                 self.s.word(";");
1640                 self.end();
1641             }
1642             ast::StmtKind::Item(ref item) => self.print_item(item),
1643             ast::StmtKind::Expr(ref expr) => {
1644                 self.space_if_not_bol();
1645                 self.print_expr_outer_attr_style(expr, false);
1646                 if classify::expr_requires_semi_to_be_stmt(expr) {
1647                     self.s.word(";");
1648                 }
1649             }
1650             ast::StmtKind::Semi(ref expr) => {
1651                 match expr.kind {
1652                     // Filter out empty `Tup` exprs created for the `redundant_semicolon`
1653                     // lint, as they shouldn't be visible and interact poorly
1654                     // with proc macros.
1655                     ast::ExprKind::Tup(ref exprs) if exprs.is_empty()
1656                       && expr.attrs.is_empty() => (),
1657                     _ => {
1658                         self.space_if_not_bol();
1659                         self.print_expr_outer_attr_style(expr, false);
1660                         self.s.word(";");
1661                     }
1662                 }
1663             }
1664             ast::StmtKind::Mac(ref mac) => {
1665                 let (ref mac, style, ref attrs) = **mac;
1666                 self.space_if_not_bol();
1667                 self.print_outer_attributes(attrs);
1668                 self.print_mac(mac);
1669                 if style == ast::MacStmtStyle::Semicolon {
1670                     self.s.word(";");
1671                 }
1672             }
1673         }
1674         self.maybe_print_trailing_comment(st.span, None)
1675     }
1676
1677     crate fn print_block(&mut self, blk: &ast::Block) {
1678         self.print_block_with_attrs(blk, &[])
1679     }
1680
1681     crate fn print_block_unclosed_indent(&mut self, blk: &ast::Block) {
1682         self.print_block_maybe_unclosed(blk, &[], false)
1683     }
1684
1685     crate fn print_block_with_attrs(&mut self,
1686                                   blk: &ast::Block,
1687                                   attrs: &[ast::Attribute]) {
1688         self.print_block_maybe_unclosed(blk, attrs, true)
1689     }
1690
1691     crate fn print_block_maybe_unclosed(&mut self,
1692                                       blk: &ast::Block,
1693                                       attrs: &[ast::Attribute],
1694                                       close_box: bool) {
1695         match blk.rules {
1696             BlockCheckMode::Unsafe(..) => self.word_space("unsafe"),
1697             BlockCheckMode::Default => ()
1698         }
1699         self.maybe_print_comment(blk.span.lo());
1700         self.ann.pre(self, AnnNode::Block(blk));
1701         self.bopen();
1702
1703         self.print_inner_attributes(attrs);
1704
1705         for (i, st) in blk.stmts.iter().enumerate() {
1706             match st.kind {
1707                 ast::StmtKind::Expr(ref expr) if i == blk.stmts.len() - 1 => {
1708                     self.maybe_print_comment(st.span.lo());
1709                     self.space_if_not_bol();
1710                     self.print_expr_outer_attr_style(expr, false);
1711                     self.maybe_print_trailing_comment(expr.span, Some(blk.span.hi()));
1712                 }
1713                 _ => self.print_stmt(st),
1714             }
1715         }
1716
1717         self.bclose_maybe_open(blk.span, close_box);
1718         self.ann.post(self, AnnNode::Block(blk))
1719     }
1720
1721     /// Print a `let pat = scrutinee` expression.
1722     crate fn print_let(&mut self, pat: &ast::Pat, scrutinee: &ast::Expr) {
1723         self.s.word("let ");
1724
1725         self.print_pat(pat);
1726         self.s.space();
1727
1728         self.word_space("=");
1729         self.print_expr_cond_paren(
1730             scrutinee,
1731             Self::cond_needs_par(scrutinee)
1732             || parser::needs_par_as_let_scrutinee(scrutinee.precedence().order())
1733         )
1734     }
1735
1736     fn print_else(&mut self, els: Option<&ast::Expr>) {
1737         if let Some(_else) = els {
1738             match _else.kind {
1739                 // Another `else if` block.
1740                 ast::ExprKind::If(ref i, ref then, ref e) => {
1741                     self.cbox(INDENT_UNIT - 1);
1742                     self.ibox(0);
1743                     self.s.word(" else if ");
1744                     self.print_expr_as_cond(i);
1745                     self.s.space();
1746                     self.print_block(then);
1747                     self.print_else(e.as_ref().map(|e| &**e))
1748                 }
1749                 // Final `else` block.
1750                 ast::ExprKind::Block(ref b, _) => {
1751                     self.cbox(INDENT_UNIT - 1);
1752                     self.ibox(0);
1753                     self.s.word(" else ");
1754                     self.print_block(b)
1755                 }
1756                 // Constraints would be great here!
1757                 _ => {
1758                     panic!("print_if saw if with weird alternative");
1759                 }
1760             }
1761         }
1762     }
1763
1764     crate fn print_if(&mut self, test: &ast::Expr, blk: &ast::Block,
1765                     elseopt: Option<&ast::Expr>) {
1766         self.head("if");
1767
1768         self.print_expr_as_cond(test);
1769         self.s.space();
1770
1771         self.print_block(blk);
1772         self.print_else(elseopt)
1773     }
1774
1775     crate fn print_mac(&mut self, m: &ast::Mac) {
1776         self.print_mac_common(
1777             Some(MacHeader::Path(&m.path)),
1778             true,
1779             None,
1780             m.args.delim(),
1781             m.args.inner_tokens(),
1782             true,
1783             m.span(),
1784         );
1785     }
1786
1787     fn print_call_post(&mut self, args: &[P<ast::Expr>]) {
1788         self.popen();
1789         self.commasep_exprs(Inconsistent, args);
1790         self.pclose()
1791     }
1792
1793     crate fn print_expr_maybe_paren(&mut self, expr: &ast::Expr, prec: i8) {
1794         self.print_expr_cond_paren(expr, expr.precedence().order() < prec)
1795     }
1796
1797     /// Prints an expr using syntax that's acceptable in a condition position, such as the `cond` in
1798     /// `if cond { ... }`.
1799     crate fn print_expr_as_cond(&mut self, expr: &ast::Expr) {
1800         self.print_expr_cond_paren(expr, Self::cond_needs_par(expr))
1801     }
1802
1803     /// Does `expr` need parenthesis when printed in a condition position?
1804     fn cond_needs_par(expr: &ast::Expr) -> bool {
1805         match expr.kind {
1806             // These cases need parens due to the parse error observed in #26461: `if return {}`
1807             // parses as the erroneous construct `if (return {})`, not `if (return) {}`.
1808             ast::ExprKind::Closure(..) |
1809             ast::ExprKind::Ret(..) |
1810             ast::ExprKind::Break(..) => true,
1811
1812             _ => parser::contains_exterior_struct_lit(expr),
1813         }
1814     }
1815
1816     /// Prints `expr` or `(expr)` when `needs_par` holds.
1817     fn print_expr_cond_paren(&mut self, expr: &ast::Expr, needs_par: bool) {
1818         if needs_par {
1819             self.popen();
1820         }
1821         self.print_expr(expr);
1822         if needs_par {
1823             self.pclose();
1824         }
1825     }
1826
1827     fn print_expr_vec(&mut self, exprs: &[P<ast::Expr>],
1828                       attrs: &[Attribute]) {
1829         self.ibox(INDENT_UNIT);
1830         self.s.word("[");
1831         self.print_inner_attributes_inline(attrs);
1832         self.commasep_exprs(Inconsistent, &exprs[..]);
1833         self.s.word("]");
1834         self.end();
1835     }
1836
1837     fn print_expr_repeat(&mut self,
1838                          element: &ast::Expr,
1839                          count: &ast::AnonConst,
1840                          attrs: &[Attribute]) {
1841         self.ibox(INDENT_UNIT);
1842         self.s.word("[");
1843         self.print_inner_attributes_inline(attrs);
1844         self.print_expr(element);
1845         self.word_space(";");
1846         self.print_expr(&count.value);
1847         self.s.word("]");
1848         self.end();
1849     }
1850
1851     fn print_expr_struct(&mut self,
1852                          path: &ast::Path,
1853                          fields: &[ast::Field],
1854                          wth: &Option<P<ast::Expr>>,
1855                          attrs: &[Attribute]) {
1856         self.print_path(path, true, 0);
1857         self.s.word("{");
1858         self.print_inner_attributes_inline(attrs);
1859         self.commasep_cmnt(
1860             Consistent,
1861             &fields[..],
1862             |s, field| {
1863                 s.ibox(INDENT_UNIT);
1864                 if !field.is_shorthand {
1865                     s.print_ident(field.ident);
1866                     s.word_space(":");
1867                 }
1868                 s.print_expr(&field.expr);
1869                 s.end();
1870             },
1871             |f| f.span);
1872         match *wth {
1873             Some(ref expr) => {
1874                 self.ibox(INDENT_UNIT);
1875                 if !fields.is_empty() {
1876                     self.s.word(",");
1877                     self.s.space();
1878                 }
1879                 self.s.word("..");
1880                 self.print_expr(expr);
1881                 self.end();
1882             }
1883             _ => if !fields.is_empty() {
1884                 self.s.word(",")
1885             }
1886         }
1887         self.s.word("}");
1888     }
1889
1890     fn print_expr_tup(&mut self, exprs: &[P<ast::Expr>],
1891                       attrs: &[Attribute]) {
1892         self.popen();
1893         self.print_inner_attributes_inline(attrs);
1894         self.commasep_exprs(Inconsistent, &exprs[..]);
1895         if exprs.len() == 1 {
1896             self.s.word(",");
1897         }
1898         self.pclose()
1899     }
1900
1901     fn print_expr_call(&mut self,
1902                        func: &ast::Expr,
1903                        args: &[P<ast::Expr>]) {
1904         let prec =
1905             match func.kind {
1906                 ast::ExprKind::Field(..) => parser::PREC_FORCE_PAREN,
1907                 _ => parser::PREC_POSTFIX,
1908             };
1909
1910         self.print_expr_maybe_paren(func, prec);
1911         self.print_call_post(args)
1912     }
1913
1914     fn print_expr_method_call(&mut self,
1915                               segment: &ast::PathSegment,
1916                               args: &[P<ast::Expr>]) {
1917         let base_args = &args[1..];
1918         self.print_expr_maybe_paren(&args[0], parser::PREC_POSTFIX);
1919         self.s.word(".");
1920         self.print_ident(segment.ident);
1921         if let Some(ref args) = segment.args {
1922             self.print_generic_args(args, true);
1923         }
1924         self.print_call_post(base_args)
1925     }
1926
1927     fn print_expr_binary(&mut self,
1928                          op: ast::BinOp,
1929                          lhs: &ast::Expr,
1930                          rhs: &ast::Expr) {
1931         let assoc_op = AssocOp::from_ast_binop(op.node);
1932         let prec = assoc_op.precedence() as i8;
1933         let fixity = assoc_op.fixity();
1934
1935         let (left_prec, right_prec) = match fixity {
1936             Fixity::Left => (prec, prec + 1),
1937             Fixity::Right => (prec + 1, prec),
1938             Fixity::None => (prec + 1, prec + 1),
1939         };
1940
1941         let left_prec = match (&lhs.kind, op.node) {
1942             // These cases need parens: `x as i32 < y` has the parser thinking that `i32 < y` is
1943             // the beginning of a path type. It starts trying to parse `x as (i32 < y ...` instead
1944             // of `(x as i32) < ...`. We need to convince it _not_ to do that.
1945             (&ast::ExprKind::Cast { .. }, ast::BinOpKind::Lt) |
1946             (&ast::ExprKind::Cast { .. }, ast::BinOpKind::Shl) => parser::PREC_FORCE_PAREN,
1947             // We are given `(let _ = a) OP b`.
1948             //
1949             // - When `OP <= LAnd` we should print `let _ = a OP b` to avoid redundant parens
1950             //   as the parser will interpret this as `(let _ = a) OP b`.
1951             //
1952             // - Otherwise, e.g. when we have `(let a = b) < c` in AST,
1953             //   parens are required since the parser would interpret `let a = b < c` as
1954             //   `let a = (b < c)`. To achieve this, we force parens.
1955             (&ast::ExprKind::Let { .. }, _) if !parser::needs_par_as_let_scrutinee(prec) => {
1956                 parser::PREC_FORCE_PAREN
1957             }
1958             _ => left_prec,
1959         };
1960
1961         self.print_expr_maybe_paren(lhs, left_prec);
1962         self.s.space();
1963         self.word_space(op.node.to_string());
1964         self.print_expr_maybe_paren(rhs, right_prec)
1965     }
1966
1967     fn print_expr_unary(&mut self,
1968                         op: ast::UnOp,
1969                         expr: &ast::Expr) {
1970         self.s.word(ast::UnOp::to_string(op));
1971         self.print_expr_maybe_paren(expr, parser::PREC_PREFIX)
1972     }
1973
1974     fn print_expr_addr_of(&mut self,
1975                           kind: ast::BorrowKind,
1976                           mutability: ast::Mutability,
1977                           expr: &ast::Expr) {
1978         self.s.word("&");
1979         match kind {
1980             ast::BorrowKind::Ref => self.print_mutability(mutability, false),
1981             ast::BorrowKind::Raw => {
1982                 self.word_nbsp("raw");
1983                 self.print_mutability(mutability, true);
1984             }
1985         }
1986         self.print_expr_maybe_paren(expr, parser::PREC_PREFIX)
1987     }
1988
1989     pub fn print_expr(&mut self, expr: &ast::Expr) {
1990         self.print_expr_outer_attr_style(expr, true)
1991     }
1992
1993     fn print_expr_outer_attr_style(&mut self,
1994                                   expr: &ast::Expr,
1995                                   is_inline: bool) {
1996         self.maybe_print_comment(expr.span.lo());
1997
1998         let attrs = &expr.attrs;
1999         if is_inline {
2000             self.print_outer_attributes_inline(attrs);
2001         } else {
2002             self.print_outer_attributes(attrs);
2003         }
2004
2005         self.ibox(INDENT_UNIT);
2006         self.ann.pre(self, AnnNode::Expr(expr));
2007         match expr.kind {
2008             ast::ExprKind::Box(ref expr) => {
2009                 self.word_space("box");
2010                 self.print_expr_maybe_paren(expr, parser::PREC_PREFIX);
2011             }
2012             ast::ExprKind::Array(ref exprs) => {
2013                 self.print_expr_vec(&exprs[..], attrs);
2014             }
2015             ast::ExprKind::Repeat(ref element, ref count) => {
2016                 self.print_expr_repeat(element, count, attrs);
2017             }
2018             ast::ExprKind::Struct(ref path, ref fields, ref wth) => {
2019                 self.print_expr_struct(path, &fields[..], wth, attrs);
2020             }
2021             ast::ExprKind::Tup(ref exprs) => {
2022                 self.print_expr_tup(&exprs[..], attrs);
2023             }
2024             ast::ExprKind::Call(ref func, ref args) => {
2025                 self.print_expr_call(func, &args[..]);
2026             }
2027             ast::ExprKind::MethodCall(ref segment, ref args) => {
2028                 self.print_expr_method_call(segment, &args[..]);
2029             }
2030             ast::ExprKind::Binary(op, ref lhs, ref rhs) => {
2031                 self.print_expr_binary(op, lhs, rhs);
2032             }
2033             ast::ExprKind::Unary(op, ref expr) => {
2034                 self.print_expr_unary(op, expr);
2035             }
2036             ast::ExprKind::AddrOf(k, m, ref expr) => {
2037                 self.print_expr_addr_of(k, m, expr);
2038             }
2039             ast::ExprKind::Lit(ref lit) => {
2040                 self.print_literal(lit);
2041             }
2042             ast::ExprKind::Cast(ref expr, ref ty) => {
2043                 let prec = AssocOp::As.precedence() as i8;
2044                 self.print_expr_maybe_paren(expr, prec);
2045                 self.s.space();
2046                 self.word_space("as");
2047                 self.print_type(ty);
2048             }
2049             ast::ExprKind::Type(ref expr, ref ty) => {
2050                 let prec = AssocOp::Colon.precedence() as i8;
2051                 self.print_expr_maybe_paren(expr, prec);
2052                 self.word_space(":");
2053                 self.print_type(ty);
2054             }
2055             ast::ExprKind::Let(ref pat, ref scrutinee) => {
2056                 self.print_let(pat, scrutinee);
2057             }
2058             ast::ExprKind::If(ref test, ref blk, ref elseopt) => {
2059                 self.print_if(test, blk, elseopt.as_ref().map(|e| &**e));
2060             }
2061             ast::ExprKind::While(ref test, ref blk, opt_label) => {
2062                 if let Some(label) = opt_label {
2063                     self.print_ident(label.ident);
2064                     self.word_space(":");
2065                 }
2066                 self.head("while");
2067                 self.print_expr_as_cond(test);
2068                 self.s.space();
2069                 self.print_block_with_attrs(blk, attrs);
2070             }
2071             ast::ExprKind::ForLoop(ref pat, ref iter, ref blk, opt_label) => {
2072                 if let Some(label) = opt_label {
2073                     self.print_ident(label.ident);
2074                     self.word_space(":");
2075                 }
2076                 self.head("for");
2077                 self.print_pat(pat);
2078                 self.s.space();
2079                 self.word_space("in");
2080                 self.print_expr_as_cond(iter);
2081                 self.s.space();
2082                 self.print_block_with_attrs(blk, attrs);
2083             }
2084             ast::ExprKind::Loop(ref blk, opt_label) => {
2085                 if let Some(label) = opt_label {
2086                     self.print_ident(label.ident);
2087                     self.word_space(":");
2088                 }
2089                 self.head("loop");
2090                 self.s.space();
2091                 self.print_block_with_attrs(blk, attrs);
2092             }
2093             ast::ExprKind::Match(ref expr, ref arms) => {
2094                 self.cbox(INDENT_UNIT);
2095                 self.ibox(INDENT_UNIT);
2096                 self.word_nbsp("match");
2097                 self.print_expr_as_cond(expr);
2098                 self.s.space();
2099                 self.bopen();
2100                 self.print_inner_attributes_no_trailing_hardbreak(attrs);
2101                 for arm in arms {
2102                     self.print_arm(arm);
2103                 }
2104                 self.bclose(expr.span);
2105             }
2106             ast::ExprKind::Closure(
2107                 capture_clause, asyncness, movability, ref decl, ref body, _) => {
2108                 self.print_movability(movability);
2109                 self.print_asyncness(asyncness);
2110                 self.print_capture_clause(capture_clause);
2111
2112                 self.print_fn_block_params(decl);
2113                 self.s.space();
2114                 self.print_expr(body);
2115                 self.end(); // need to close a box
2116
2117                 // a box will be closed by print_expr, but we didn't want an overall
2118                 // wrapper so we closed the corresponding opening. so create an
2119                 // empty box to satisfy the close.
2120                 self.ibox(0);
2121             }
2122             ast::ExprKind::Block(ref blk, opt_label) => {
2123                 if let Some(label) = opt_label {
2124                     self.print_ident(label.ident);
2125                     self.word_space(":");
2126                 }
2127                 // containing cbox, will be closed by print-block at }
2128                 self.cbox(INDENT_UNIT);
2129                 // head-box, will be closed by print-block after {
2130                 self.ibox(0);
2131                 self.print_block_with_attrs(blk, attrs);
2132             }
2133             ast::ExprKind::Async(capture_clause, _, ref blk) => {
2134                 self.word_nbsp("async");
2135                 self.print_capture_clause(capture_clause);
2136                 self.s.space();
2137                 // cbox/ibox in analogy to the `ExprKind::Block` arm above
2138                 self.cbox(INDENT_UNIT);
2139                 self.ibox(0);
2140                 self.print_block_with_attrs(blk, attrs);
2141             }
2142             ast::ExprKind::Await(ref expr) => {
2143                 self.print_expr_maybe_paren(expr, parser::PREC_POSTFIX);
2144                 self.s.word(".await");
2145             }
2146             ast::ExprKind::Assign(ref lhs, ref rhs) => {
2147                 let prec = AssocOp::Assign.precedence() as i8;
2148                 self.print_expr_maybe_paren(lhs, prec + 1);
2149                 self.s.space();
2150                 self.word_space("=");
2151                 self.print_expr_maybe_paren(rhs, prec);
2152             }
2153             ast::ExprKind::AssignOp(op, ref lhs, ref rhs) => {
2154                 let prec = AssocOp::Assign.precedence() as i8;
2155                 self.print_expr_maybe_paren(lhs, prec + 1);
2156                 self.s.space();
2157                 self.s.word(op.node.to_string());
2158                 self.word_space("=");
2159                 self.print_expr_maybe_paren(rhs, prec);
2160             }
2161             ast::ExprKind::Field(ref expr, ident) => {
2162                 self.print_expr_maybe_paren(expr, parser::PREC_POSTFIX);
2163                 self.s.word(".");
2164                 self.print_ident(ident);
2165             }
2166             ast::ExprKind::Index(ref expr, ref index) => {
2167                 self.print_expr_maybe_paren(expr, parser::PREC_POSTFIX);
2168                 self.s.word("[");
2169                 self.print_expr(index);
2170                 self.s.word("]");
2171             }
2172             ast::ExprKind::Range(ref start, ref end, limits) => {
2173                 // Special case for `Range`.  `AssocOp` claims that `Range` has higher precedence
2174                 // than `Assign`, but `x .. x = x` gives a parse error instead of `x .. (x = x)`.
2175                 // Here we use a fake precedence value so that any child with lower precedence than
2176                 // a "normal" binop gets parenthesized.  (`LOr` is the lowest-precedence binop.)
2177                 let fake_prec = AssocOp::LOr.precedence() as i8;
2178                 if let Some(ref e) = *start {
2179                     self.print_expr_maybe_paren(e, fake_prec);
2180                 }
2181                 if limits == ast::RangeLimits::HalfOpen {
2182                     self.s.word("..");
2183                 } else {
2184                     self.s.word("..=");
2185                 }
2186                 if let Some(ref e) = *end {
2187                     self.print_expr_maybe_paren(e, fake_prec);
2188                 }
2189             }
2190             ast::ExprKind::Path(None, ref path) => {
2191                 self.print_path(path, true, 0)
2192             }
2193             ast::ExprKind::Path(Some(ref qself), ref path) => {
2194                 self.print_qpath(path, qself, true)
2195             }
2196             ast::ExprKind::Break(opt_label, ref opt_expr) => {
2197                 self.s.word("break");
2198                 self.s.space();
2199                 if let Some(label) = opt_label {
2200                     self.print_ident(label.ident);
2201                     self.s.space();
2202                 }
2203                 if let Some(ref expr) = *opt_expr {
2204                     self.print_expr_maybe_paren(expr, parser::PREC_JUMP);
2205                     self.s.space();
2206                 }
2207             }
2208             ast::ExprKind::Continue(opt_label) => {
2209                 self.s.word("continue");
2210                 self.s.space();
2211                 if let Some(label) = opt_label {
2212                     self.print_ident(label.ident);
2213                     self.s.space()
2214                 }
2215             }
2216             ast::ExprKind::Ret(ref result) => {
2217                 self.s.word("return");
2218                 if let Some(ref expr) = *result {
2219                     self.s.word(" ");
2220                     self.print_expr_maybe_paren(expr, parser::PREC_JUMP);
2221                 }
2222             }
2223             ast::ExprKind::InlineAsm(ref a) => {
2224                 self.s.word("asm!");
2225                 self.popen();
2226                 self.print_string(&a.asm.as_str(), a.asm_str_style);
2227                 self.word_space(":");
2228
2229                 self.commasep(Inconsistent, &a.outputs, |s, out| {
2230                     let constraint = out.constraint.as_str();
2231                     let mut ch = constraint.chars();
2232                     match ch.next() {
2233                         Some('=') if out.is_rw => {
2234                             s.print_string(&format!("+{}", ch.as_str()),
2235                                            ast::StrStyle::Cooked)
2236                         }
2237                         _ => s.print_string(&constraint, ast::StrStyle::Cooked)
2238                     }
2239                     s.popen();
2240                     s.print_expr(&out.expr);
2241                     s.pclose();
2242                 });
2243                 self.s.space();
2244                 self.word_space(":");
2245
2246                 self.commasep(Inconsistent, &a.inputs, |s, &(co, ref o)| {
2247                     s.print_string(&co.as_str(), ast::StrStyle::Cooked);
2248                     s.popen();
2249                     s.print_expr(o);
2250                     s.pclose();
2251                 });
2252                 self.s.space();
2253                 self.word_space(":");
2254
2255                 self.commasep(Inconsistent, &a.clobbers,
2256                                    |s, co| {
2257                     s.print_string(&co.as_str(), ast::StrStyle::Cooked);
2258                 });
2259
2260                 let mut options = vec![];
2261                 if a.volatile {
2262                     options.push("volatile");
2263                 }
2264                 if a.alignstack {
2265                     options.push("alignstack");
2266                 }
2267                 if a.dialect == ast::AsmDialect::Intel {
2268                     options.push("intel");
2269                 }
2270
2271                 if !options.is_empty() {
2272                     self.s.space();
2273                     self.word_space(":");
2274                     self.commasep(Inconsistent, &options,
2275                                   |s, &co| {
2276                                       s.print_string(co, ast::StrStyle::Cooked);
2277                                   });
2278                 }
2279
2280                 self.pclose();
2281             }
2282             ast::ExprKind::Mac(ref m) => self.print_mac(m),
2283             ast::ExprKind::Paren(ref e) => {
2284                 self.popen();
2285                 self.print_inner_attributes_inline(attrs);
2286                 self.print_expr(e);
2287                 self.pclose();
2288             },
2289             ast::ExprKind::Yield(ref e) => {
2290                 self.s.word("yield");
2291                 match *e {
2292                     Some(ref expr) => {
2293                         self.s.space();
2294                         self.print_expr_maybe_paren(expr, parser::PREC_JUMP);
2295                     }
2296                     _ => ()
2297                 }
2298             }
2299             ast::ExprKind::Try(ref e) => {
2300                 self.print_expr_maybe_paren(e, parser::PREC_POSTFIX);
2301                 self.s.word("?")
2302             }
2303             ast::ExprKind::TryBlock(ref blk) => {
2304                 self.head("try");
2305                 self.s.space();
2306                 self.print_block_with_attrs(blk, attrs)
2307             }
2308             ast::ExprKind::Err => {
2309                 self.popen();
2310                 self.s.word("/*ERROR*/");
2311                 self.pclose()
2312             }
2313         }
2314         self.ann.post(self, AnnNode::Expr(expr));
2315         self.end();
2316     }
2317
2318     crate fn print_local_decl(&mut self, loc: &ast::Local) {
2319         self.print_pat(&loc.pat);
2320         if let Some(ref ty) = loc.ty {
2321             self.word_space(":");
2322             self.print_type(ty);
2323         }
2324     }
2325
2326     pub fn print_usize(&mut self, i: usize) {
2327         self.s.word(i.to_string())
2328     }
2329
2330     crate fn print_name(&mut self, name: ast::Name) {
2331         self.s.word(name.to_string());
2332         self.ann.post(self, AnnNode::Name(&name))
2333     }
2334
2335     fn print_qpath(&mut self,
2336                    path: &ast::Path,
2337                    qself: &ast::QSelf,
2338                    colons_before_params: bool)
2339     {
2340         self.s.word("<");
2341         self.print_type(&qself.ty);
2342         if qself.position > 0 {
2343             self.s.space();
2344             self.word_space("as");
2345             let depth = path.segments.len() - qself.position;
2346             self.print_path(path, false, depth);
2347         }
2348         self.s.word(">");
2349         self.s.word("::");
2350         let item_segment = path.segments.last().unwrap();
2351         self.print_ident(item_segment.ident);
2352         match item_segment.args {
2353             Some(ref args) => self.print_generic_args(args, colons_before_params),
2354             None => {},
2355         }
2356     }
2357
2358     crate fn print_pat(&mut self, pat: &ast::Pat) {
2359         self.maybe_print_comment(pat.span.lo());
2360         self.ann.pre(self, AnnNode::Pat(pat));
2361         /* Pat isn't normalized, but the beauty of it
2362          is that it doesn't matter */
2363         match pat.kind {
2364             PatKind::Wild => self.s.word("_"),
2365             PatKind::Ident(binding_mode, ident, ref sub) => {
2366                 match binding_mode {
2367                     ast::BindingMode::ByRef(mutbl) => {
2368                         self.word_nbsp("ref");
2369                         self.print_mutability(mutbl, false);
2370                     }
2371                     ast::BindingMode::ByValue(ast::Mutability::Immutable) => {}
2372                     ast::BindingMode::ByValue(ast::Mutability::Mutable) => {
2373                         self.word_nbsp("mut");
2374                     }
2375                 }
2376                 self.print_ident(ident);
2377                 if let Some(ref p) = *sub {
2378                     self.s.space();
2379                     self.s.word_space("@");
2380                     self.print_pat(p);
2381                 }
2382             }
2383             PatKind::TupleStruct(ref path, ref elts) => {
2384                 self.print_path(path, true, 0);
2385                 self.popen();
2386                 self.commasep(Inconsistent, &elts[..], |s, p| s.print_pat(p));
2387                 self.pclose();
2388             }
2389             PatKind::Or(ref pats) => {
2390                 self.strsep("|", true, Inconsistent, &pats[..], |s, p| s.print_pat(p));
2391             }
2392             PatKind::Path(None, ref path) => {
2393                 self.print_path(path, true, 0);
2394             }
2395             PatKind::Path(Some(ref qself), ref path) => {
2396                 self.print_qpath(path, qself, false);
2397             }
2398             PatKind::Struct(ref path, ref fields, etc) => {
2399                 self.print_path(path, true, 0);
2400                 self.nbsp();
2401                 self.word_space("{");
2402                 self.commasep_cmnt(
2403                     Consistent, &fields[..],
2404                     |s, f| {
2405                         s.cbox(INDENT_UNIT);
2406                         if !f.is_shorthand {
2407                             s.print_ident(f.ident);
2408                             s.word_nbsp(":");
2409                         }
2410                         s.print_pat(&f.pat);
2411                         s.end();
2412                     },
2413                     |f| f.pat.span);
2414                 if etc {
2415                     if !fields.is_empty() { self.word_space(","); }
2416                     self.s.word("..");
2417                 }
2418                 self.s.space();
2419                 self.s.word("}");
2420             }
2421             PatKind::Tuple(ref elts) => {
2422                 self.popen();
2423                 self.commasep(Inconsistent, &elts[..], |s, p| s.print_pat(p));
2424                 if elts.len() == 1 {
2425                     self.s.word(",");
2426                 }
2427                 self.pclose();
2428             }
2429             PatKind::Box(ref inner) => {
2430                 self.s.word("box ");
2431                 self.print_pat(inner);
2432             }
2433             PatKind::Ref(ref inner, mutbl) => {
2434                 self.s.word("&");
2435                 if mutbl == ast::Mutability::Mutable {
2436                     self.s.word("mut ");
2437                 }
2438                 self.print_pat(inner);
2439             }
2440             PatKind::Lit(ref e) => self.print_expr(&**e),
2441             PatKind::Range(ref begin, ref end, Spanned { node: ref end_kind, .. }) => {
2442                 self.print_expr(begin);
2443                 self.s.space();
2444                 match *end_kind {
2445                     RangeEnd::Included(RangeSyntax::DotDotDot) => self.s.word("..."),
2446                     RangeEnd::Included(RangeSyntax::DotDotEq) => self.s.word("..="),
2447                     RangeEnd::Excluded => self.s.word(".."),
2448                 }
2449                 self.print_expr(end);
2450             }
2451             PatKind::Slice(ref elts) => {
2452                 self.s.word("[");
2453                 self.commasep(Inconsistent, &elts[..], |s, p| s.print_pat(p));
2454                 self.s.word("]");
2455             }
2456             PatKind::Rest => self.s.word(".."),
2457             PatKind::Paren(ref inner) => {
2458                 self.popen();
2459                 self.print_pat(inner);
2460                 self.pclose();
2461             }
2462             PatKind::Mac(ref m) => self.print_mac(m),
2463         }
2464         self.ann.post(self, AnnNode::Pat(pat))
2465     }
2466
2467     fn print_arm(&mut self, arm: &ast::Arm) {
2468         // Note, I have no idea why this check is necessary, but here it is.
2469         if arm.attrs.is_empty() {
2470             self.s.space();
2471         }
2472         self.cbox(INDENT_UNIT);
2473         self.ibox(0);
2474         self.maybe_print_comment(arm.pat.span.lo());
2475         self.print_outer_attributes(&arm.attrs);
2476         self.print_pat(&arm.pat);
2477         self.s.space();
2478         if let Some(ref e) = arm.guard {
2479             self.word_space("if");
2480             self.print_expr(e);
2481             self.s.space();
2482         }
2483         self.word_space("=>");
2484
2485         match arm.body.kind {
2486             ast::ExprKind::Block(ref blk, opt_label) => {
2487                 if let Some(label) = opt_label {
2488                     self.print_ident(label.ident);
2489                     self.word_space(":");
2490                 }
2491
2492                 // The block will close the pattern's ibox.
2493                 self.print_block_unclosed_indent(blk);
2494
2495                 // If it is a user-provided unsafe block, print a comma after it.
2496                 if let BlockCheckMode::Unsafe(ast::UserProvided) = blk.rules {
2497                     self.s.word(",");
2498                 }
2499             }
2500             _ => {
2501                 self.end(); // Close the ibox for the pattern.
2502                 self.print_expr(&arm.body);
2503                 self.s.word(",");
2504             }
2505         }
2506         self.end(); // Close enclosing cbox.
2507     }
2508
2509     fn print_explicit_self(&mut self, explicit_self: &ast::ExplicitSelf) {
2510         match explicit_self.node {
2511             SelfKind::Value(m) => {
2512                 self.print_mutability(m, false);
2513                 self.s.word("self")
2514             }
2515             SelfKind::Region(ref lt, m) => {
2516                 self.s.word("&");
2517                 self.print_opt_lifetime(lt);
2518                 self.print_mutability(m, false);
2519                 self.s.word("self")
2520             }
2521             SelfKind::Explicit(ref typ, m) => {
2522                 self.print_mutability(m, false);
2523                 self.s.word("self");
2524                 self.word_space(":");
2525                 self.print_type(typ)
2526             }
2527         }
2528     }
2529
2530     crate fn print_fn(&mut self,
2531                     decl: &ast::FnDecl,
2532                     header: ast::FnHeader,
2533                     name: Option<ast::Ident>,
2534                     generics: &ast::Generics,
2535                     vis: &ast::Visibility) {
2536         self.print_fn_header_info(header, vis);
2537
2538         if let Some(name) = name {
2539             self.nbsp();
2540             self.print_ident(name);
2541         }
2542         self.print_generic_params(&generics.params);
2543         self.print_fn_params_and_ret(decl);
2544         self.print_where_clause(&generics.where_clause)
2545     }
2546
2547     crate fn print_fn_params_and_ret(&mut self, decl: &ast::FnDecl) {
2548         self.popen();
2549         self.commasep(Inconsistent, &decl.inputs, |s, param| s.print_param(param, false));
2550         self.pclose();
2551
2552         self.print_fn_output(decl)
2553     }
2554
2555     crate fn print_fn_block_params(&mut self, decl: &ast::FnDecl) {
2556         self.s.word("|");
2557         self.commasep(Inconsistent, &decl.inputs, |s, param| s.print_param(param, true));
2558         self.s.word("|");
2559
2560         if let ast::FunctionRetTy::Default(..) = decl.output {
2561             return;
2562         }
2563
2564         self.space_if_not_bol();
2565         self.word_space("->");
2566         match decl.output {
2567             ast::FunctionRetTy::Ty(ref ty) => {
2568                 self.print_type(ty);
2569                 self.maybe_print_comment(ty.span.lo())
2570             }
2571             ast::FunctionRetTy::Default(..) => unreachable!(),
2572         }
2573     }
2574
2575     crate fn print_movability(&mut self, movability: ast::Movability) {
2576         match movability {
2577             ast::Movability::Static => self.word_space("static"),
2578             ast::Movability::Movable => {},
2579         }
2580     }
2581
2582     crate fn print_asyncness(&mut self, asyncness: ast::IsAsync) {
2583         if asyncness.is_async() {
2584             self.word_nbsp("async");
2585         }
2586     }
2587
2588     crate fn print_capture_clause(&mut self, capture_clause: ast::CaptureBy) {
2589         match capture_clause {
2590             ast::CaptureBy::Value => self.word_space("move"),
2591             ast::CaptureBy::Ref => {},
2592         }
2593     }
2594
2595     pub fn print_type_bounds(&mut self, prefix: &'static str, bounds: &[ast::GenericBound]) {
2596         if !bounds.is_empty() {
2597             self.s.word(prefix);
2598             let mut first = true;
2599             for bound in bounds {
2600                 if !(first && prefix.is_empty()) {
2601                     self.nbsp();
2602                 }
2603                 if first {
2604                     first = false;
2605                 } else {
2606                     self.word_space("+");
2607                 }
2608
2609                 match bound {
2610                     GenericBound::Trait(tref, modifier) => {
2611                         if modifier == &TraitBoundModifier::Maybe {
2612                             self.s.word("?");
2613                         }
2614                         self.print_poly_trait_ref(tref);
2615                     }
2616                     GenericBound::Outlives(lt) => self.print_lifetime(*lt),
2617                 }
2618             }
2619         }
2620     }
2621
2622     crate fn print_lifetime(&mut self, lifetime: ast::Lifetime) {
2623         self.print_name(lifetime.ident.name)
2624     }
2625
2626     crate fn print_lifetime_bounds(
2627         &mut self, lifetime: ast::Lifetime, bounds: &ast::GenericBounds) {
2628         self.print_lifetime(lifetime);
2629         if !bounds.is_empty() {
2630             self.s.word(": ");
2631             for (i, bound) in bounds.iter().enumerate() {
2632                 if i != 0 {
2633                     self.s.word(" + ");
2634                 }
2635                 match bound {
2636                     ast::GenericBound::Outlives(lt) => self.print_lifetime(*lt),
2637                     _ => panic!(),
2638                 }
2639             }
2640         }
2641     }
2642
2643     crate fn print_generic_params(&mut self, generic_params: &[ast::GenericParam]) {
2644         if generic_params.is_empty() {
2645             return;
2646         }
2647
2648         self.s.word("<");
2649
2650         self.commasep(Inconsistent, &generic_params, |s, param| {
2651             s.print_outer_attributes_inline(&param.attrs);
2652
2653             match param.kind {
2654                 ast::GenericParamKind::Lifetime => {
2655                     let lt = ast::Lifetime { id: param.id, ident: param.ident };
2656                     s.print_lifetime_bounds(lt, &param.bounds)
2657                 }
2658                 ast::GenericParamKind::Type { ref default } => {
2659                     s.print_ident(param.ident);
2660                     s.print_type_bounds(":", &param.bounds);
2661                     if let Some(ref default) = default {
2662                         s.s.space();
2663                         s.word_space("=");
2664                         s.print_type(default)
2665                     }
2666                 }
2667                 ast::GenericParamKind::Const { ref ty } => {
2668                     s.word_space("const");
2669                     s.print_ident(param.ident);
2670                     s.s.space();
2671                     s.word_space(":");
2672                     s.print_type(ty);
2673                     s.print_type_bounds(":", &param.bounds)
2674                 }
2675             }
2676         });
2677
2678         self.s.word(">");
2679     }
2680
2681     crate fn print_where_clause(&mut self, where_clause: &ast::WhereClause) {
2682         if where_clause.predicates.is_empty() {
2683             return;
2684         }
2685
2686         self.s.space();
2687         self.word_space("where");
2688
2689         for (i, predicate) in where_clause.predicates.iter().enumerate() {
2690             if i != 0 {
2691                 self.word_space(",");
2692             }
2693
2694             match *predicate {
2695                 ast::WherePredicate::BoundPredicate(ast::WhereBoundPredicate {
2696                     ref bound_generic_params,
2697                     ref bounded_ty,
2698                     ref bounds,
2699                     ..
2700                 }) => {
2701                     self.print_formal_generic_params(bound_generic_params);
2702                     self.print_type(bounded_ty);
2703                     self.print_type_bounds(":", bounds);
2704                 }
2705                 ast::WherePredicate::RegionPredicate(ast::WhereRegionPredicate{ref lifetime,
2706                                                                                ref bounds,
2707                                                                                ..}) => {
2708                     self.print_lifetime_bounds(*lifetime, bounds);
2709                 }
2710                 ast::WherePredicate::EqPredicate(ast::WhereEqPredicate{ref lhs_ty,
2711                                                                        ref rhs_ty,
2712                                                                        ..}) => {
2713                     self.print_type(lhs_ty);
2714                     self.s.space();
2715                     self.word_space("=");
2716                     self.print_type(rhs_ty);
2717                 }
2718             }
2719         }
2720     }
2721
2722     crate fn print_use_tree(&mut self, tree: &ast::UseTree) {
2723         match tree.kind {
2724             ast::UseTreeKind::Simple(rename, ..) => {
2725                 self.print_path(&tree.prefix, false, 0);
2726                 if let Some(rename) = rename {
2727                     self.s.space();
2728                     self.word_space("as");
2729                     self.print_ident(rename);
2730                 }
2731             }
2732             ast::UseTreeKind::Glob => {
2733                 if !tree.prefix.segments.is_empty() {
2734                     self.print_path(&tree.prefix, false, 0);
2735                     self.s.word("::");
2736                 }
2737                 self.s.word("*");
2738             }
2739             ast::UseTreeKind::Nested(ref items) => {
2740                 if tree.prefix.segments.is_empty() {
2741                     self.s.word("{");
2742                 } else {
2743                     self.print_path(&tree.prefix, false, 0);
2744                     self.s.word("::{");
2745                 }
2746                 self.commasep(Inconsistent, &items[..], |this, &(ref tree, _)| {
2747                     this.print_use_tree(tree)
2748                 });
2749                 self.s.word("}");
2750             }
2751         }
2752     }
2753
2754     pub fn print_mutability(&mut self, mutbl: ast::Mutability, print_const: bool) {
2755         match mutbl {
2756             ast::Mutability::Mutable => self.word_nbsp("mut"),
2757             ast::Mutability::Immutable => if print_const { self.word_nbsp("const"); },
2758         }
2759     }
2760
2761     crate fn print_mt(&mut self, mt: &ast::MutTy, print_const: bool) {
2762         self.print_mutability(mt.mutbl, print_const);
2763         self.print_type(&mt.ty)
2764     }
2765
2766     crate fn print_param(&mut self, input: &ast::Param, is_closure: bool) {
2767         self.ibox(INDENT_UNIT);
2768
2769         self.print_outer_attributes_inline(&input.attrs);
2770
2771         match input.ty.kind {
2772             ast::TyKind::Infer if is_closure => self.print_pat(&input.pat),
2773             _ => {
2774                 if let Some(eself) = input.to_self() {
2775                     self.print_explicit_self(&eself);
2776                 } else {
2777                     let invalid = if let PatKind::Ident(_, ident, _) = input.pat.kind {
2778                         ident.name == kw::Invalid
2779                     } else {
2780                         false
2781                     };
2782                     if !invalid {
2783                         self.print_pat(&input.pat);
2784                         self.s.word(":");
2785                         self.s.space();
2786                     }
2787                     self.print_type(&input.ty);
2788                 }
2789             }
2790         }
2791         self.end();
2792     }
2793
2794     crate fn print_fn_output(&mut self, decl: &ast::FnDecl) {
2795         if let ast::FunctionRetTy::Default(..) = decl.output {
2796             return;
2797         }
2798
2799         self.space_if_not_bol();
2800         self.ibox(INDENT_UNIT);
2801         self.word_space("->");
2802         match decl.output {
2803             ast::FunctionRetTy::Default(..) => unreachable!(),
2804             ast::FunctionRetTy::Ty(ref ty) =>
2805                 self.print_type(ty),
2806         }
2807         self.end();
2808
2809         match decl.output {
2810             ast::FunctionRetTy::Ty(ref output) => self.maybe_print_comment(output.span.lo()),
2811             _ => {}
2812         }
2813     }
2814
2815     crate fn print_ty_fn(&mut self,
2816                        ext: ast::Extern,
2817                        unsafety: ast::Unsafety,
2818                        decl: &ast::FnDecl,
2819                        name: Option<ast::Ident>,
2820                        generic_params: &[ast::GenericParam])
2821                        {
2822         self.ibox(INDENT_UNIT);
2823         if !generic_params.is_empty() {
2824             self.s.word("for");
2825             self.print_generic_params(generic_params);
2826         }
2827         let generics = ast::Generics {
2828             params: Vec::new(),
2829             where_clause: ast::WhereClause {
2830                 predicates: Vec::new(),
2831                 span: syntax_pos::DUMMY_SP,
2832             },
2833             span: syntax_pos::DUMMY_SP,
2834         };
2835         self.print_fn(decl,
2836                       ast::FnHeader { unsafety, ext, ..ast::FnHeader::default() },
2837                       name,
2838                       &generics,
2839                       &source_map::dummy_spanned(ast::VisibilityKind::Inherited));
2840         self.end();
2841     }
2842
2843     crate fn maybe_print_trailing_comment(&mut self, span: syntax_pos::Span,
2844                                         next_pos: Option<BytePos>)
2845     {
2846         if let Some(cmnts) = self.comments() {
2847             if let Some(cmnt) = cmnts.trailing_comment(span, next_pos) {
2848                 self.print_comment(&cmnt);
2849             }
2850         }
2851     }
2852
2853     crate fn print_remaining_comments(&mut self) {
2854         // If there aren't any remaining comments, then we need to manually
2855         // make sure there is a line break at the end.
2856         if self.next_comment().is_none() {
2857             self.s.hardbreak();
2858         }
2859         while let Some(ref cmnt) = self.next_comment() {
2860             self.print_comment(cmnt);
2861         }
2862     }
2863
2864     crate fn print_fn_header_info(&mut self,
2865                                 header: ast::FnHeader,
2866                                 vis: &ast::Visibility) {
2867         self.s.word(visibility_qualified(vis, ""));
2868
2869         match header.constness.node {
2870             ast::Constness::NotConst => {}
2871             ast::Constness::Const => self.word_nbsp("const")
2872         }
2873
2874         self.print_asyncness(header.asyncness.node);
2875         self.print_unsafety(header.unsafety);
2876
2877         match header.ext {
2878             ast::Extern::None => {}
2879             ast::Extern::Implicit => {
2880                 self.word_nbsp("extern");
2881             }
2882             ast::Extern::Explicit(abi) => {
2883                 self.word_nbsp("extern");
2884                 self.print_literal(&abi.as_lit());
2885                 self.nbsp();
2886             }
2887         }
2888
2889         self.s.word("fn")
2890     }
2891
2892     crate fn print_unsafety(&mut self, s: ast::Unsafety) {
2893         match s {
2894             ast::Unsafety::Normal => {},
2895             ast::Unsafety::Unsafe => self.word_nbsp("unsafe"),
2896         }
2897     }
2898
2899     crate fn print_is_auto(&mut self, s: ast::IsAuto) {
2900         match s {
2901             ast::IsAuto::Yes => self.word_nbsp("auto"),
2902             ast::IsAuto::No => {}
2903         }
2904     }
2905 }