]> git.lizzy.rs Git - rust.git/blob - src/librustc/hir/print.rs
Pretty print parens around casts on the LHS of '<'
[rust.git] / src / librustc / hir / print.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 pub use self::AnnNode::*;
12
13 use syntax::abi::Abi;
14 use syntax::ast;
15 use syntax::codemap::{CodeMap, Spanned};
16 use syntax::parse::ParseSess;
17 use syntax::parse::lexer::comments;
18 use syntax::print::pp::{self, Breaks};
19 use syntax::print::pp::Breaks::{Consistent, Inconsistent};
20 use syntax::print::pprust::PrintState;
21 use syntax::ptr::P;
22 use syntax::symbol::keywords;
23 use syntax::util::parser::{self, AssocOp, Fixity};
24 use syntax_pos::{self, BytePos};
25
26 use hir;
27 use hir::{PatKind, RegionTyParamBound, TraitTyParamBound, TraitBoundModifier, RangeEnd};
28
29 use std::cell::Cell;
30 use std::io::{self, Write, Read};
31 use std::iter::Peekable;
32 use std::vec;
33
34 pub enum AnnNode<'a> {
35     NodeName(&'a ast::Name),
36     NodeBlock(&'a hir::Block),
37     NodeItem(&'a hir::Item),
38     NodeSubItem(ast::NodeId),
39     NodeExpr(&'a hir::Expr),
40     NodePat(&'a hir::Pat),
41 }
42
43 pub enum Nested {
44     Item(hir::ItemId),
45     TraitItem(hir::TraitItemId),
46     ImplItem(hir::ImplItemId),
47     Body(hir::BodyId),
48     BodyArgPat(hir::BodyId, usize)
49 }
50
51 pub trait PpAnn {
52     fn nested(&self, _state: &mut State, _nested: Nested) -> io::Result<()> {
53         Ok(())
54     }
55     fn pre(&self, _state: &mut State, _node: AnnNode) -> io::Result<()> {
56         Ok(())
57     }
58     fn post(&self, _state: &mut State, _node: AnnNode) -> io::Result<()> {
59         Ok(())
60     }
61 }
62
63 pub struct NoAnn;
64 impl PpAnn for NoAnn {}
65 pub const NO_ANN: &'static PpAnn = &NoAnn;
66
67 impl PpAnn for hir::Crate {
68     fn nested(&self, state: &mut State, nested: Nested) -> io::Result<()> {
69         match nested {
70             Nested::Item(id) => state.print_item(self.item(id.id)),
71             Nested::TraitItem(id) => state.print_trait_item(self.trait_item(id)),
72             Nested::ImplItem(id) => state.print_impl_item(self.impl_item(id)),
73             Nested::Body(id) => state.print_expr(&self.body(id).value),
74             Nested::BodyArgPat(id, i) => state.print_pat(&self.body(id).arguments[i].pat)
75         }
76     }
77 }
78
79 pub struct State<'a> {
80     pub s: pp::Printer<'a>,
81     cm: Option<&'a CodeMap>,
82     comments: Option<Vec<comments::Comment>>,
83     literals: Peekable<vec::IntoIter<comments::Literal>>,
84     cur_cmnt: usize,
85     boxes: Vec<pp::Breaks>,
86     ann: &'a (PpAnn + 'a),
87 }
88
89 impl<'a> PrintState<'a> for State<'a> {
90     fn writer(&mut self) -> &mut pp::Printer<'a> {
91         &mut self.s
92     }
93
94     fn boxes(&mut self) -> &mut Vec<pp::Breaks> {
95         &mut self.boxes
96     }
97
98     fn comments(&mut self) -> &mut Option<Vec<comments::Comment>> {
99         &mut self.comments
100     }
101
102     fn cur_cmnt(&mut self) -> &mut usize {
103         &mut self.cur_cmnt
104     }
105
106     fn cur_lit(&mut self) -> Option<&comments::Literal> {
107         self.literals.peek()
108     }
109
110     fn bump_lit(&mut self) -> Option<comments::Literal> {
111         self.literals.next()
112     }
113 }
114
115 #[allow(non_upper_case_globals)]
116 pub const indent_unit: usize = 4;
117
118 #[allow(non_upper_case_globals)]
119 pub const default_columns: usize = 78;
120
121
122 /// Requires you to pass an input filename and reader so that
123 /// it can scan the input text for comments and literals to
124 /// copy forward.
125 pub fn print_crate<'a>(cm: &'a CodeMap,
126                        sess: &ParseSess,
127                        krate: &hir::Crate,
128                        filename: String,
129                        input: &mut Read,
130                        out: Box<Write + 'a>,
131                        ann: &'a PpAnn,
132                        is_expanded: bool)
133                        -> io::Result<()> {
134     let mut s = State::new_from_input(cm, sess, filename, input, out, ann, is_expanded);
135
136     // When printing the AST, we sometimes need to inject `#[no_std]` here.
137     // Since you can't compile the HIR, it's not necessary.
138
139     s.print_mod(&krate.module, &krate.attrs)?;
140     s.print_remaining_comments()?;
141     s.s.eof()
142 }
143
144 impl<'a> State<'a> {
145     pub fn new_from_input(cm: &'a CodeMap,
146                           sess: &ParseSess,
147                           filename: String,
148                           input: &mut Read,
149                           out: Box<Write + 'a>,
150                           ann: &'a PpAnn,
151                           is_expanded: bool)
152                           -> State<'a> {
153         let (cmnts, lits) = comments::gather_comments_and_literals(sess, filename, input);
154
155         State::new(cm,
156                    out,
157                    ann,
158                    Some(cmnts),
159                    // If the code is post expansion, don't use the table of
160                    // literals, since it doesn't correspond with the literals
161                    // in the AST anymore.
162                    if is_expanded {
163                        None
164                    } else {
165                        Some(lits)
166                    })
167     }
168
169     pub fn new(cm: &'a CodeMap,
170                out: Box<Write + 'a>,
171                ann: &'a PpAnn,
172                comments: Option<Vec<comments::Comment>>,
173                literals: Option<Vec<comments::Literal>>)
174                -> State<'a> {
175         State {
176             s: pp::mk_printer(out, default_columns),
177             cm: Some(cm),
178             comments: comments.clone(),
179             literals: literals.unwrap_or_default().into_iter().peekable(),
180             cur_cmnt: 0,
181             boxes: Vec::new(),
182             ann,
183         }
184     }
185 }
186
187 pub fn to_string<F>(ann: &PpAnn, f: F) -> String
188     where F: FnOnce(&mut State) -> io::Result<()>
189 {
190     let mut wr = Vec::new();
191     {
192         let mut printer = State {
193             s: pp::mk_printer(Box::new(&mut wr), default_columns),
194             cm: None,
195             comments: None,
196             literals: vec![].into_iter().peekable(),
197             cur_cmnt: 0,
198             boxes: Vec::new(),
199             ann,
200         };
201         f(&mut printer).unwrap();
202         printer.s.eof().unwrap();
203     }
204     String::from_utf8(wr).unwrap()
205 }
206
207 pub fn visibility_qualified(vis: &hir::Visibility, w: &str) -> String {
208     to_string(NO_ANN, |s| {
209         s.print_visibility(vis)?;
210         s.s.word(w)
211     })
212 }
213
214 impl<'a> State<'a> {
215     pub fn cbox(&mut self, u: usize) -> io::Result<()> {
216         self.boxes.push(pp::Breaks::Consistent);
217         self.s.cbox(u)
218     }
219
220     pub fn nbsp(&mut self) -> io::Result<()> {
221         self.s.word(" ")
222     }
223
224     pub fn word_nbsp(&mut self, w: &str) -> io::Result<()> {
225         self.s.word(w)?;
226         self.nbsp()
227     }
228
229     pub fn head(&mut self, w: &str) -> io::Result<()> {
230         // outer-box is consistent
231         self.cbox(indent_unit)?;
232         // head-box is inconsistent
233         self.ibox(w.len() + 1)?;
234         // keyword that starts the head
235         if !w.is_empty() {
236             self.word_nbsp(w)?;
237         }
238         Ok(())
239     }
240
241     pub fn bopen(&mut self) -> io::Result<()> {
242         self.s.word("{")?;
243         self.end() // close the head-box
244     }
245
246     pub fn bclose_(&mut self, span: syntax_pos::Span, indented: usize) -> io::Result<()> {
247         self.bclose_maybe_open(span, indented, true)
248     }
249     pub fn bclose_maybe_open(&mut self,
250                              span: syntax_pos::Span,
251                              indented: usize,
252                              close_box: bool)
253                              -> io::Result<()> {
254         self.maybe_print_comment(span.hi())?;
255         self.break_offset_if_not_bol(1, -(indented as isize))?;
256         self.s.word("}")?;
257         if close_box {
258             self.end()?; // close the outer-box
259         }
260         Ok(())
261     }
262     pub fn bclose(&mut self, span: syntax_pos::Span) -> io::Result<()> {
263         self.bclose_(span, indent_unit)
264     }
265
266     pub fn in_cbox(&self) -> bool {
267         match self.boxes.last() {
268             Some(&last_box) => last_box == pp::Breaks::Consistent,
269             None => false,
270         }
271     }
272     pub fn space_if_not_bol(&mut self) -> io::Result<()> {
273         if !self.is_bol() {
274             self.s.space()?;
275         }
276         Ok(())
277     }
278     pub fn break_offset_if_not_bol(&mut self, n: usize, off: isize) -> io::Result<()> {
279         if !self.is_bol() {
280             self.s.break_offset(n, off)
281         } else {
282             if off != 0 && self.s.last_token().is_hardbreak_tok() {
283                 // We do something pretty sketchy here: tuck the nonzero
284                 // offset-adjustment we were going to deposit along with the
285                 // break into the previous hardbreak.
286                 self.s.replace_last_token(pp::Printer::hardbreak_tok_offset(off));
287             }
288             Ok(())
289         }
290     }
291
292     // Synthesizes a comment that was not textually present in the original source
293     // file.
294     pub fn synth_comment(&mut self, text: String) -> io::Result<()> {
295         self.s.word("/*")?;
296         self.s.space()?;
297         self.s.word(&text[..])?;
298         self.s.space()?;
299         self.s.word("*/")
300     }
301
302
303     pub fn commasep_cmnt<T, F, G>(&mut self,
304                                   b: Breaks,
305                                   elts: &[T],
306                                   mut op: F,
307                                   mut get_span: G)
308                                   -> io::Result<()>
309         where F: FnMut(&mut State, &T) -> io::Result<()>,
310               G: FnMut(&T) -> syntax_pos::Span
311     {
312         self.rbox(0, b)?;
313         let len = elts.len();
314         let mut i = 0;
315         for elt in elts {
316             self.maybe_print_comment(get_span(elt).hi())?;
317             op(self, elt)?;
318             i += 1;
319             if i < len {
320                 self.s.word(",")?;
321                 self.maybe_print_trailing_comment(get_span(elt), Some(get_span(&elts[i]).hi()))?;
322                 self.space_if_not_bol()?;
323             }
324         }
325         self.end()
326     }
327
328     pub fn commasep_exprs(&mut self, b: Breaks, exprs: &[hir::Expr]) -> io::Result<()> {
329         self.commasep_cmnt(b, exprs, |s, e| s.print_expr(&e), |e| e.span)
330     }
331
332     pub fn print_mod(&mut self, _mod: &hir::Mod, attrs: &[ast::Attribute]) -> io::Result<()> {
333         self.print_inner_attributes(attrs)?;
334         for &item_id in &_mod.item_ids {
335             self.ann.nested(self, Nested::Item(item_id))?;
336         }
337         Ok(())
338     }
339
340     pub fn print_foreign_mod(&mut self,
341                              nmod: &hir::ForeignMod,
342                              attrs: &[ast::Attribute])
343                              -> io::Result<()> {
344         self.print_inner_attributes(attrs)?;
345         for item in &nmod.items {
346             self.print_foreign_item(item)?;
347         }
348         Ok(())
349     }
350
351     pub fn print_opt_lifetime(&mut self, lifetime: &hir::Lifetime) -> io::Result<()> {
352         if !lifetime.is_elided() {
353             self.print_lifetime(lifetime)?;
354             self.nbsp()?;
355         }
356         Ok(())
357     }
358
359     pub fn print_type(&mut self, ty: &hir::Ty) -> io::Result<()> {
360         self.maybe_print_comment(ty.span.lo())?;
361         self.ibox(0)?;
362         match ty.node {
363             hir::TySlice(ref ty) => {
364                 self.s.word("[")?;
365                 self.print_type(&ty)?;
366                 self.s.word("]")?;
367             }
368             hir::TyPtr(ref mt) => {
369                 self.s.word("*")?;
370                 match mt.mutbl {
371                     hir::MutMutable => self.word_nbsp("mut")?,
372                     hir::MutImmutable => self.word_nbsp("const")?,
373                 }
374                 self.print_type(&mt.ty)?;
375             }
376             hir::TyRptr(ref lifetime, ref mt) => {
377                 self.s.word("&")?;
378                 self.print_opt_lifetime(lifetime)?;
379                 self.print_mt(mt)?;
380             }
381             hir::TyNever => {
382                 self.s.word("!")?;
383             },
384             hir::TyTup(ref elts) => {
385                 self.popen()?;
386                 self.commasep(Inconsistent, &elts[..], |s, ty| s.print_type(&ty))?;
387                 if elts.len() == 1 {
388                     self.s.word(",")?;
389                 }
390                 self.pclose()?;
391             }
392             hir::TyBareFn(ref f) => {
393                 let generics = hir::Generics {
394                     lifetimes: f.lifetimes.clone(),
395                     ty_params: hir::HirVec::new(),
396                     where_clause: hir::WhereClause {
397                         id: ast::DUMMY_NODE_ID,
398                         predicates: hir::HirVec::new(),
399                     },
400                     span: syntax_pos::DUMMY_SP,
401                 };
402                 self.print_ty_fn(f.abi, f.unsafety, &f.decl, None, &generics,
403                                  &f.arg_names[..])?;
404             }
405             hir::TyPath(ref qpath) => {
406                 self.print_qpath(qpath, false)?
407             }
408             hir::TyTraitObject(ref bounds, ref lifetime) => {
409                 let mut first = true;
410                 for bound in bounds {
411                     self.nbsp()?;
412                     if first {
413                         first = false;
414                     } else {
415                         self.word_space("+")?;
416                     }
417                     self.print_poly_trait_ref(bound)?;
418                 }
419                 if !lifetime.is_elided() {
420                     self.word_space("+")?;
421                     self.print_lifetime(lifetime)?;
422                 }
423             }
424             hir::TyImplTrait(ref bounds) => {
425                 self.print_bounds("impl ", &bounds[..])?;
426             }
427             hir::TyArray(ref ty, v) => {
428                 self.s.word("[")?;
429                 self.print_type(&ty)?;
430                 self.s.word("; ")?;
431                 self.ann.nested(self, Nested::Body(v))?;
432                 self.s.word("]")?;
433             }
434             hir::TyTypeof(e) => {
435                 self.s.word("typeof(")?;
436                 self.ann.nested(self, Nested::Body(e))?;
437                 self.s.word(")")?;
438             }
439             hir::TyInfer => {
440                 self.s.word("_")?;
441             }
442             hir::TyErr => {
443                 self.s.word("?")?;
444             }
445         }
446         self.end()
447     }
448
449     pub fn print_foreign_item(&mut self, item: &hir::ForeignItem) -> io::Result<()> {
450         self.hardbreak_if_not_bol()?;
451         self.maybe_print_comment(item.span.lo())?;
452         self.print_outer_attributes(&item.attrs)?;
453         match item.node {
454             hir::ForeignItemFn(ref decl, ref arg_names, ref generics) => {
455                 self.head("")?;
456                 self.print_fn(decl,
457                               hir::Unsafety::Normal,
458                               hir::Constness::NotConst,
459                               Abi::Rust,
460                               Some(item.name),
461                               generics,
462                               &item.vis,
463                               arg_names,
464                               None)?;
465                 self.end()?; // end head-ibox
466                 self.s.word(";")?;
467                 self.end() // end the outer fn box
468             }
469             hir::ForeignItemStatic(ref t, m) => {
470                 self.head(&visibility_qualified(&item.vis, "static"))?;
471                 if m {
472                     self.word_space("mut")?;
473                 }
474                 self.print_name(item.name)?;
475                 self.word_space(":")?;
476                 self.print_type(&t)?;
477                 self.s.word(";")?;
478                 self.end()?; // end the head-ibox
479                 self.end() // end the outer cbox
480             }
481             hir::ForeignItemType => {
482                 self.head(&visibility_qualified(&item.vis, "type"))?;
483                 self.print_name(item.name)?;
484                 self.s.word(";")?;
485                 self.end()?; // end the head-ibox
486                 self.end() // end the outer cbox
487             }
488         }
489     }
490
491     fn print_associated_const(&mut self,
492                               name: ast::Name,
493                               ty: &hir::Ty,
494                               default: Option<hir::BodyId>,
495                               vis: &hir::Visibility)
496                               -> io::Result<()> {
497         self.s.word(&visibility_qualified(vis, ""))?;
498         self.word_space("const")?;
499         self.print_name(name)?;
500         self.word_space(":")?;
501         self.print_type(ty)?;
502         if let Some(expr) = default {
503             self.s.space()?;
504             self.word_space("=")?;
505             self.ann.nested(self, Nested::Body(expr))?;
506         }
507         self.s.word(";")
508     }
509
510     fn print_associated_type(&mut self,
511                              name: ast::Name,
512                              bounds: Option<&hir::TyParamBounds>,
513                              ty: Option<&hir::Ty>)
514                              -> io::Result<()> {
515         self.word_space("type")?;
516         self.print_name(name)?;
517         if let Some(bounds) = bounds {
518             self.print_bounds(":", bounds)?;
519         }
520         if let Some(ty) = ty {
521             self.s.space()?;
522             self.word_space("=")?;
523             self.print_type(ty)?;
524         }
525         self.s.word(";")
526     }
527
528     /// Pretty-print an item
529     pub fn print_item(&mut self, item: &hir::Item) -> io::Result<()> {
530         self.hardbreak_if_not_bol()?;
531         self.maybe_print_comment(item.span.lo())?;
532         self.print_outer_attributes(&item.attrs)?;
533         self.ann.pre(self, NodeItem(item))?;
534         match item.node {
535             hir::ItemExternCrate(ref optional_path) => {
536                 self.head(&visibility_qualified(&item.vis, "extern crate"))?;
537                 if let Some(p) = *optional_path {
538                     let val = p.as_str();
539                     if val.contains("-") {
540                         self.print_string(&val, ast::StrStyle::Cooked)?;
541                     } else {
542                         self.print_name(p)?;
543                     }
544                     self.s.space()?;
545                     self.s.word("as")?;
546                     self.s.space()?;
547                 }
548                 self.print_name(item.name)?;
549                 self.s.word(";")?;
550                 self.end()?; // end inner head-block
551                 self.end()?; // end outer head-block
552             }
553             hir::ItemUse(ref path, kind) => {
554                 self.head(&visibility_qualified(&item.vis, "use"))?;
555                 self.print_path(path, false)?;
556
557                 match kind {
558                     hir::UseKind::Single => {
559                         if path.segments.last().unwrap().name != item.name {
560                             self.s.space()?;
561                             self.word_space("as")?;
562                             self.print_name(item.name)?;
563                         }
564                         self.s.word(";")?;
565                     }
566                     hir::UseKind::Glob => self.s.word("::*;")?,
567                     hir::UseKind::ListStem => self.s.word("::{};")?
568                 }
569                 self.end()?; // end inner head-block
570                 self.end()?; // end outer head-block
571             }
572             hir::ItemStatic(ref ty, m, expr) => {
573                 self.head(&visibility_qualified(&item.vis, "static"))?;
574                 if m == hir::MutMutable {
575                     self.word_space("mut")?;
576                 }
577                 self.print_name(item.name)?;
578                 self.word_space(":")?;
579                 self.print_type(&ty)?;
580                 self.s.space()?;
581                 self.end()?; // end the head-ibox
582
583                 self.word_space("=")?;
584                 self.ann.nested(self, Nested::Body(expr))?;
585                 self.s.word(";")?;
586                 self.end()?; // end the outer cbox
587             }
588             hir::ItemConst(ref ty, expr) => {
589                 self.head(&visibility_qualified(&item.vis, "const"))?;
590                 self.print_name(item.name)?;
591                 self.word_space(":")?;
592                 self.print_type(&ty)?;
593                 self.s.space()?;
594                 self.end()?; // end the head-ibox
595
596                 self.word_space("=")?;
597                 self.ann.nested(self, Nested::Body(expr))?;
598                 self.s.word(";")?;
599                 self.end()?; // end the outer cbox
600             }
601             hir::ItemFn(ref decl, unsafety, constness, abi, ref typarams, body) => {
602                 self.head("")?;
603                 self.print_fn(decl,
604                               unsafety,
605                               constness,
606                               abi,
607                               Some(item.name),
608                               typarams,
609                               &item.vis,
610                               &[],
611                               Some(body))?;
612                 self.s.word(" ")?;
613                 self.end()?; // need to close a box
614                 self.end()?; // need to close a box
615                 self.ann.nested(self, Nested::Body(body))?;
616             }
617             hir::ItemMod(ref _mod) => {
618                 self.head(&visibility_qualified(&item.vis, "mod"))?;
619                 self.print_name(item.name)?;
620                 self.nbsp()?;
621                 self.bopen()?;
622                 self.print_mod(_mod, &item.attrs)?;
623                 self.bclose(item.span)?;
624             }
625             hir::ItemForeignMod(ref nmod) => {
626                 self.head("extern")?;
627                 self.word_nbsp(&nmod.abi.to_string())?;
628                 self.bopen()?;
629                 self.print_foreign_mod(nmod, &item.attrs)?;
630                 self.bclose(item.span)?;
631             }
632             hir::ItemGlobalAsm(ref ga) => {
633                 self.head(&visibility_qualified(&item.vis, "global asm"))?;
634                 self.s.word(&ga.asm.as_str())?;
635                 self.end()?
636             }
637             hir::ItemTy(ref ty, ref params) => {
638                 self.ibox(indent_unit)?;
639                 self.ibox(0)?;
640                 self.word_nbsp(&visibility_qualified(&item.vis, "type"))?;
641                 self.print_name(item.name)?;
642                 self.print_generics(params)?;
643                 self.end()?; // end the inner ibox
644
645                 self.print_where_clause(&params.where_clause)?;
646                 self.s.space()?;
647                 self.word_space("=")?;
648                 self.print_type(&ty)?;
649                 self.s.word(";")?;
650                 self.end()?; // end the outer ibox
651             }
652             hir::ItemEnum(ref enum_definition, ref params) => {
653                 self.print_enum_def(enum_definition, params, item.name, item.span, &item.vis)?;
654             }
655             hir::ItemStruct(ref struct_def, ref generics) => {
656                 self.head(&visibility_qualified(&item.vis, "struct"))?;
657                 self.print_struct(struct_def, generics, item.name, item.span, true)?;
658             }
659             hir::ItemUnion(ref struct_def, ref generics) => {
660                 self.head(&visibility_qualified(&item.vis, "union"))?;
661                 self.print_struct(struct_def, generics, item.name, item.span, true)?;
662             }
663             hir::ItemDefaultImpl(unsafety, ref trait_ref) => {
664                 self.head("")?;
665                 self.print_visibility(&item.vis)?;
666                 self.print_unsafety(unsafety)?;
667                 self.word_nbsp("impl")?;
668                 self.print_trait_ref(trait_ref)?;
669                 self.s.space()?;
670                 self.word_space("for")?;
671                 self.word_space("..")?;
672                 self.bopen()?;
673                 self.bclose(item.span)?;
674             }
675             hir::ItemImpl(unsafety,
676                           polarity,
677                           defaultness,
678                           ref generics,
679                           ref opt_trait,
680                           ref ty,
681                           ref impl_items) => {
682                 self.head("")?;
683                 self.print_visibility(&item.vis)?;
684                 self.print_defaultness(defaultness)?;
685                 self.print_unsafety(unsafety)?;
686                 self.word_nbsp("impl")?;
687
688                 if generics.is_parameterized() {
689                     self.print_generics(generics)?;
690                     self.s.space()?;
691                 }
692
693                 match polarity {
694                     hir::ImplPolarity::Negative => {
695                         self.s.word("!")?;
696                     }
697                     _ => {}
698                 }
699
700                 match opt_trait {
701                     &Some(ref t) => {
702                         self.print_trait_ref(t)?;
703                         self.s.space()?;
704                         self.word_space("for")?;
705                     }
706                     &None => {}
707                 }
708
709                 self.print_type(&ty)?;
710                 self.print_where_clause(&generics.where_clause)?;
711
712                 self.s.space()?;
713                 self.bopen()?;
714                 self.print_inner_attributes(&item.attrs)?;
715                 for impl_item in impl_items {
716                     self.ann.nested(self, Nested::ImplItem(impl_item.id))?;
717                 }
718                 self.bclose(item.span)?;
719             }
720             hir::ItemTrait(unsafety, ref generics, ref bounds, ref trait_items) => {
721                 self.head("")?;
722                 self.print_visibility(&item.vis)?;
723                 self.print_unsafety(unsafety)?;
724                 self.word_nbsp("trait")?;
725                 self.print_name(item.name)?;
726                 self.print_generics(generics)?;
727                 let mut real_bounds = Vec::with_capacity(bounds.len());
728                 for b in bounds.iter() {
729                     if let TraitTyParamBound(ref ptr, hir::TraitBoundModifier::Maybe) = *b {
730                         self.s.space()?;
731                         self.word_space("for ?")?;
732                         self.print_trait_ref(&ptr.trait_ref)?;
733                     } else {
734                         real_bounds.push(b.clone());
735                     }
736                 }
737                 self.print_bounds(":", &real_bounds[..])?;
738                 self.print_where_clause(&generics.where_clause)?;
739                 self.s.word(" ")?;
740                 self.bopen()?;
741                 for trait_item in trait_items {
742                     self.ann.nested(self, Nested::TraitItem(trait_item.id))?;
743                 }
744                 self.bclose(item.span)?;
745             }
746         }
747         self.ann.post(self, NodeItem(item))
748     }
749
750     pub fn print_trait_ref(&mut self, t: &hir::TraitRef) -> io::Result<()> {
751         self.print_path(&t.path, false)
752     }
753
754     fn print_formal_lifetime_list(&mut self, lifetimes: &[hir::LifetimeDef]) -> io::Result<()> {
755         if !lifetimes.is_empty() {
756             self.s.word("for<")?;
757             let mut comma = false;
758             for lifetime_def in lifetimes {
759                 if comma {
760                     self.word_space(",")?
761                 }
762                 self.print_lifetime_def(lifetime_def)?;
763                 comma = true;
764             }
765             self.s.word(">")?;
766         }
767         Ok(())
768     }
769
770     fn print_poly_trait_ref(&mut self, t: &hir::PolyTraitRef) -> io::Result<()> {
771         self.print_formal_lifetime_list(&t.bound_lifetimes)?;
772         self.print_trait_ref(&t.trait_ref)
773     }
774
775     pub fn print_enum_def(&mut self,
776                           enum_definition: &hir::EnumDef,
777                           generics: &hir::Generics,
778                           name: ast::Name,
779                           span: syntax_pos::Span,
780                           visibility: &hir::Visibility)
781                           -> io::Result<()> {
782         self.head(&visibility_qualified(visibility, "enum"))?;
783         self.print_name(name)?;
784         self.print_generics(generics)?;
785         self.print_where_clause(&generics.where_clause)?;
786         self.s.space()?;
787         self.print_variants(&enum_definition.variants, span)
788     }
789
790     pub fn print_variants(&mut self,
791                           variants: &[hir::Variant],
792                           span: syntax_pos::Span)
793                           -> io::Result<()> {
794         self.bopen()?;
795         for v in variants {
796             self.space_if_not_bol()?;
797             self.maybe_print_comment(v.span.lo())?;
798             self.print_outer_attributes(&v.node.attrs)?;
799             self.ibox(indent_unit)?;
800             self.print_variant(v)?;
801             self.s.word(",")?;
802             self.end()?;
803             self.maybe_print_trailing_comment(v.span, None)?;
804         }
805         self.bclose(span)
806     }
807
808     pub fn print_visibility(&mut self, vis: &hir::Visibility) -> io::Result<()> {
809         match *vis {
810             hir::Public => self.word_nbsp("pub"),
811             hir::Visibility::Crate => self.word_nbsp("pub(crate)"),
812             hir::Visibility::Restricted { ref path, .. } => {
813                 self.s.word("pub(")?;
814                 self.print_path(path, false)?;
815                 self.word_nbsp(")")
816             }
817             hir::Inherited => Ok(()),
818         }
819     }
820
821     pub fn print_defaultness(&mut self, defaultness: hir::Defaultness) -> io::Result<()> {
822         match defaultness {
823             hir::Defaultness::Default { .. } => self.word_nbsp("default")?,
824             hir::Defaultness::Final => (),
825         }
826         Ok(())
827     }
828
829     pub fn print_struct(&mut self,
830                         struct_def: &hir::VariantData,
831                         generics: &hir::Generics,
832                         name: ast::Name,
833                         span: syntax_pos::Span,
834                         print_finalizer: bool)
835                         -> io::Result<()> {
836         self.print_name(name)?;
837         self.print_generics(generics)?;
838         if !struct_def.is_struct() {
839             if struct_def.is_tuple() {
840                 self.popen()?;
841                 self.commasep(Inconsistent, struct_def.fields(), |s, field| {
842                     s.maybe_print_comment(field.span.lo())?;
843                     s.print_outer_attributes(&field.attrs)?;
844                     s.print_visibility(&field.vis)?;
845                     s.print_type(&field.ty)
846                 })?;
847                 self.pclose()?;
848             }
849             self.print_where_clause(&generics.where_clause)?;
850             if print_finalizer {
851                 self.s.word(";")?;
852             }
853             self.end()?;
854             self.end() // close the outer-box
855         } else {
856             self.print_where_clause(&generics.where_clause)?;
857             self.nbsp()?;
858             self.bopen()?;
859             self.hardbreak_if_not_bol()?;
860
861             for field in struct_def.fields() {
862                 self.hardbreak_if_not_bol()?;
863                 self.maybe_print_comment(field.span.lo())?;
864                 self.print_outer_attributes(&field.attrs)?;
865                 self.print_visibility(&field.vis)?;
866                 self.print_name(field.name)?;
867                 self.word_nbsp(":")?;
868                 self.print_type(&field.ty)?;
869                 self.s.word(",")?;
870             }
871
872             self.bclose(span)
873         }
874     }
875
876     pub fn print_variant(&mut self, v: &hir::Variant) -> io::Result<()> {
877         self.head("")?;
878         let generics = hir::Generics::empty();
879         self.print_struct(&v.node.data, &generics, v.node.name, v.span, false)?;
880         if let Some(d) = v.node.disr_expr {
881             self.s.space()?;
882             self.word_space("=")?;
883             self.ann.nested(self, Nested::Body(d))?;
884         }
885         Ok(())
886     }
887     pub fn print_method_sig(&mut self,
888                             name: ast::Name,
889                             m: &hir::MethodSig,
890                             generics: &hir::Generics,
891                             vis: &hir::Visibility,
892                             arg_names: &[Spanned<ast::Name>],
893                             body_id: Option<hir::BodyId>)
894                             -> io::Result<()> {
895         self.print_fn(&m.decl,
896                       m.unsafety,
897                       m.constness,
898                       m.abi,
899                       Some(name),
900                       generics,
901                       vis,
902                       arg_names,
903                       body_id)
904     }
905
906     pub fn print_trait_item(&mut self, ti: &hir::TraitItem) -> io::Result<()> {
907         self.ann.pre(self, NodeSubItem(ti.id))?;
908         self.hardbreak_if_not_bol()?;
909         self.maybe_print_comment(ti.span.lo())?;
910         self.print_outer_attributes(&ti.attrs)?;
911         match ti.node {
912             hir::TraitItemKind::Const(ref ty, default) => {
913                 self.print_associated_const(ti.name, &ty, default, &hir::Inherited)?;
914             }
915             hir::TraitItemKind::Method(ref sig, hir::TraitMethod::Required(ref arg_names)) => {
916                 self.print_method_sig(ti.name, sig, &ti.generics, &hir::Inherited, arg_names,
917                     None)?;
918                 self.s.word(";")?;
919             }
920             hir::TraitItemKind::Method(ref sig, hir::TraitMethod::Provided(body)) => {
921                 self.head("")?;
922                 self.print_method_sig(ti.name, sig, &ti.generics, &hir::Inherited, &[],
923                     Some(body))?;
924                 self.nbsp()?;
925                 self.end()?; // need to close a box
926                 self.end()?; // need to close a box
927                 self.ann.nested(self, Nested::Body(body))?;
928             }
929             hir::TraitItemKind::Type(ref bounds, ref default) => {
930                 self.print_associated_type(ti.name,
931                                            Some(bounds),
932                                            default.as_ref().map(|ty| &**ty))?;
933             }
934         }
935         self.ann.post(self, NodeSubItem(ti.id))
936     }
937
938     pub fn print_impl_item(&mut self, ii: &hir::ImplItem) -> io::Result<()> {
939         self.ann.pre(self, NodeSubItem(ii.id))?;
940         self.hardbreak_if_not_bol()?;
941         self.maybe_print_comment(ii.span.lo())?;
942         self.print_outer_attributes(&ii.attrs)?;
943         self.print_defaultness(ii.defaultness)?;
944
945         match ii.node {
946             hir::ImplItemKind::Const(ref ty, expr) => {
947                 self.print_associated_const(ii.name, &ty, Some(expr), &ii.vis)?;
948             }
949             hir::ImplItemKind::Method(ref sig, body) => {
950                 self.head("")?;
951                 self.print_method_sig(ii.name, sig, &ii.generics, &ii.vis, &[], Some(body))?;
952                 self.nbsp()?;
953                 self.end()?; // need to close a box
954                 self.end()?; // need to close a box
955                 self.ann.nested(self, Nested::Body(body))?;
956             }
957             hir::ImplItemKind::Type(ref ty) => {
958                 self.print_associated_type(ii.name, None, Some(ty))?;
959             }
960         }
961         self.ann.post(self, NodeSubItem(ii.id))
962     }
963
964     pub fn print_stmt(&mut self, st: &hir::Stmt) -> io::Result<()> {
965         self.maybe_print_comment(st.span.lo())?;
966         match st.node {
967             hir::StmtDecl(ref decl, _) => {
968                 self.print_decl(&decl)?;
969             }
970             hir::StmtExpr(ref expr, _) => {
971                 self.space_if_not_bol()?;
972                 self.print_expr(&expr)?;
973             }
974             hir::StmtSemi(ref expr, _) => {
975                 self.space_if_not_bol()?;
976                 self.print_expr(&expr)?;
977                 self.s.word(";")?;
978             }
979         }
980         if stmt_ends_with_semi(&st.node) {
981             self.s.word(";")?;
982         }
983         self.maybe_print_trailing_comment(st.span, None)
984     }
985
986     pub fn print_block(&mut self, blk: &hir::Block) -> io::Result<()> {
987         self.print_block_with_attrs(blk, &[])
988     }
989
990     pub fn print_block_unclosed(&mut self, blk: &hir::Block) -> io::Result<()> {
991         self.print_block_unclosed_indent(blk, indent_unit)
992     }
993
994     pub fn print_block_unclosed_indent(&mut self,
995                                        blk: &hir::Block,
996                                        indented: usize)
997                                        -> io::Result<()> {
998         self.print_block_maybe_unclosed(blk, indented, &[], false)
999     }
1000
1001     pub fn print_block_with_attrs(&mut self,
1002                                   blk: &hir::Block,
1003                                   attrs: &[ast::Attribute])
1004                                   -> io::Result<()> {
1005         self.print_block_maybe_unclosed(blk, indent_unit, attrs, true)
1006     }
1007
1008     pub fn print_block_maybe_unclosed(&mut self,
1009                                       blk: &hir::Block,
1010                                       indented: usize,
1011                                       attrs: &[ast::Attribute],
1012                                       close_box: bool)
1013                                       -> io::Result<()> {
1014         match blk.rules {
1015             hir::UnsafeBlock(..) => self.word_space("unsafe")?,
1016             hir::PushUnsafeBlock(..) => self.word_space("push_unsafe")?,
1017             hir::PopUnsafeBlock(..) => self.word_space("pop_unsafe")?,
1018             hir::DefaultBlock => (),
1019         }
1020         self.maybe_print_comment(blk.span.lo())?;
1021         self.ann.pre(self, NodeBlock(blk))?;
1022         self.bopen()?;
1023
1024         self.print_inner_attributes(attrs)?;
1025
1026         for st in &blk.stmts {
1027             self.print_stmt(st)?;
1028         }
1029         match blk.expr {
1030             Some(ref expr) => {
1031                 self.space_if_not_bol()?;
1032                 self.print_expr(&expr)?;
1033                 self.maybe_print_trailing_comment(expr.span, Some(blk.span.hi()))?;
1034             }
1035             _ => (),
1036         }
1037         self.bclose_maybe_open(blk.span, indented, close_box)?;
1038         self.ann.post(self, NodeBlock(blk))
1039     }
1040
1041     fn print_else(&mut self, els: Option<&hir::Expr>) -> io::Result<()> {
1042         match els {
1043             Some(_else) => {
1044                 match _else.node {
1045                     // "another else-if"
1046                     hir::ExprIf(ref i, ref then, ref e) => {
1047                         self.cbox(indent_unit - 1)?;
1048                         self.ibox(0)?;
1049                         self.s.word(" else if ")?;
1050                         self.print_expr_as_cond(&i)?;
1051                         self.s.space()?;
1052                         self.print_expr(&then)?;
1053                         self.print_else(e.as_ref().map(|e| &**e))
1054                     }
1055                     // "final else"
1056                     hir::ExprBlock(ref b) => {
1057                         self.cbox(indent_unit - 1)?;
1058                         self.ibox(0)?;
1059                         self.s.word(" else ")?;
1060                         self.print_block(&b)
1061                     }
1062                     // BLEAH, constraints would be great here
1063                     _ => {
1064                         panic!("print_if saw if with weird alternative");
1065                     }
1066                 }
1067             }
1068             _ => Ok(()),
1069         }
1070     }
1071
1072     pub fn print_if(&mut self,
1073                     test: &hir::Expr,
1074                     blk: &hir::Expr,
1075                     elseopt: Option<&hir::Expr>)
1076                     -> io::Result<()> {
1077         self.head("if")?;
1078         self.print_expr_as_cond(test)?;
1079         self.s.space()?;
1080         self.print_expr(blk)?;
1081         self.print_else(elseopt)
1082     }
1083
1084     pub fn print_if_let(&mut self,
1085                         pat: &hir::Pat,
1086                         expr: &hir::Expr,
1087                         blk: &hir::Block,
1088                         elseopt: Option<&hir::Expr>)
1089                         -> io::Result<()> {
1090         self.head("if let")?;
1091         self.print_pat(pat)?;
1092         self.s.space()?;
1093         self.word_space("=")?;
1094         self.print_expr_as_cond(expr)?;
1095         self.s.space()?;
1096         self.print_block(blk)?;
1097         self.print_else(elseopt)
1098     }
1099
1100
1101     fn print_call_post(&mut self, args: &[hir::Expr]) -> io::Result<()> {
1102         self.popen()?;
1103         self.commasep_exprs(Inconsistent, args)?;
1104         self.pclose()
1105     }
1106
1107     pub fn print_expr_maybe_paren(&mut self, expr: &hir::Expr, prec: i8) -> io::Result<()> {
1108         let needs_par = expr_precedence(expr) < prec;
1109         if needs_par {
1110             self.popen()?;
1111         }
1112         self.print_expr(expr)?;
1113         if needs_par {
1114             self.pclose()?;
1115         }
1116         Ok(())
1117     }
1118
1119     /// Print an expr using syntax that's acceptable in a condition position, such as the `cond` in
1120     /// `if cond { ... }`.
1121     pub fn print_expr_as_cond(&mut self, expr: &hir::Expr) -> io::Result<()> {
1122         let needs_par = match expr.node {
1123             // These cases need parens due to the parse error observed in #26461: `if return {}`
1124             // parses as the erroneous construct `if (return {})`, not `if (return) {}`.
1125             hir::ExprClosure(..) |
1126             hir::ExprRet(..) |
1127             hir::ExprBreak(..) => true,
1128
1129             _ => contains_exterior_struct_lit(expr),
1130         };
1131
1132         if needs_par {
1133             self.popen()?;
1134         }
1135         self.print_expr(expr)?;
1136         if needs_par {
1137             self.pclose()?;
1138         }
1139         Ok(())
1140     }
1141
1142     fn print_expr_vec(&mut self, exprs: &[hir::Expr]) -> io::Result<()> {
1143         self.ibox(indent_unit)?;
1144         self.s.word("[")?;
1145         self.commasep_exprs(Inconsistent, exprs)?;
1146         self.s.word("]")?;
1147         self.end()
1148     }
1149
1150     fn print_expr_repeat(&mut self, element: &hir::Expr, count: hir::BodyId) -> io::Result<()> {
1151         self.ibox(indent_unit)?;
1152         self.s.word("[")?;
1153         self.print_expr(element)?;
1154         self.word_space(";")?;
1155         self.ann.nested(self, Nested::Body(count))?;
1156         self.s.word("]")?;
1157         self.end()
1158     }
1159
1160     fn print_expr_struct(&mut self,
1161                          qpath: &hir::QPath,
1162                          fields: &[hir::Field],
1163                          wth: &Option<P<hir::Expr>>)
1164                          -> io::Result<()> {
1165         self.print_qpath(qpath, true)?;
1166         self.s.word("{")?;
1167         self.commasep_cmnt(Consistent,
1168                            &fields[..],
1169                            |s, field| {
1170                                s.ibox(indent_unit)?;
1171                                if !field.is_shorthand {
1172                                     s.print_name(field.name.node)?;
1173                                     s.word_space(":")?;
1174                                }
1175                                s.print_expr(&field.expr)?;
1176                                s.end()
1177                            },
1178                            |f| f.span)?;
1179         match *wth {
1180             Some(ref expr) => {
1181                 self.ibox(indent_unit)?;
1182                 if !fields.is_empty() {
1183                     self.s.word(",")?;
1184                     self.s.space()?;
1185                 }
1186                 self.s.word("..")?;
1187                 self.print_expr(&expr)?;
1188                 self.end()?;
1189             }
1190             _ => if !fields.is_empty() {
1191                 self.s.word(",")?
1192             },
1193         }
1194         self.s.word("}")?;
1195         Ok(())
1196     }
1197
1198     fn print_expr_tup(&mut self, exprs: &[hir::Expr]) -> io::Result<()> {
1199         self.popen()?;
1200         self.commasep_exprs(Inconsistent, exprs)?;
1201         if exprs.len() == 1 {
1202             self.s.word(",")?;
1203         }
1204         self.pclose()
1205     }
1206
1207     fn print_expr_call(&mut self, func: &hir::Expr, args: &[hir::Expr]) -> io::Result<()> {
1208         let prec =
1209             match func.node {
1210                 hir::ExprField(..) |
1211                 hir::ExprTupField(..) => parser::PREC_FORCE_PAREN,
1212                 _ => parser::PREC_POSTFIX,
1213             };
1214
1215         self.print_expr_maybe_paren(func, prec)?;
1216         self.print_call_post(args)
1217     }
1218
1219     fn print_expr_method_call(&mut self,
1220                               segment: &hir::PathSegment,
1221                               args: &[hir::Expr])
1222                               -> io::Result<()> {
1223         let base_args = &args[1..];
1224         self.print_expr_maybe_paren(&args[0], parser::PREC_POSTFIX)?;
1225         self.s.word(".")?;
1226         self.print_name(segment.name)?;
1227
1228         segment.with_parameters(|parameters| {
1229             if !parameters.lifetimes.is_empty() ||
1230                 !parameters.types.is_empty() ||
1231                 !parameters.bindings.is_empty()
1232             {
1233                 self.print_path_parameters(&parameters, segment.infer_types, true)
1234             } else {
1235                 Ok(())
1236             }
1237         })?;
1238         self.print_call_post(base_args)
1239     }
1240
1241     fn print_expr_binary(&mut self,
1242                          op: hir::BinOp,
1243                          lhs: &hir::Expr,
1244                          rhs: &hir::Expr)
1245                          -> io::Result<()> {
1246         let assoc_op = bin_op_to_assoc_op(op.node);
1247         let prec = assoc_op.precedence() as i8;
1248         let fixity = assoc_op.fixity();
1249
1250         let (left_prec, right_prec) = match fixity {
1251             Fixity::Left => (prec, prec + 1),
1252             Fixity::Right => (prec + 1, prec),
1253             Fixity::None => (prec + 1, prec + 1),
1254         };
1255
1256         let left_prec = match (&lhs.node, op.node) {
1257             // These cases need parens: `x as i32 < y` has the parser thinking that `i32 < y` is
1258             // the beginning of a path type. It starts trying to parse `x as (i32 < y ...` instead
1259             // of `(x as i32) < ...`. We need to convince it _not_ to do that.
1260             (&hir::ExprCast { .. }, hir::BinOp_::BiLt) |
1261             (&hir::ExprCast { .. }, hir::BinOp_::BiShl) => parser::PREC_FORCE_PAREN,
1262             _ => left_prec,
1263         };
1264
1265         self.print_expr_maybe_paren(lhs, left_prec)?;
1266         self.s.space()?;
1267         self.word_space(op.node.as_str())?;
1268         self.print_expr_maybe_paren(rhs, right_prec)
1269     }
1270
1271     fn print_expr_unary(&mut self, op: hir::UnOp, expr: &hir::Expr) -> io::Result<()> {
1272         self.s.word(op.as_str())?;
1273         self.print_expr_maybe_paren(expr, parser::PREC_PREFIX)
1274     }
1275
1276     fn print_expr_addr_of(&mut self,
1277                           mutability: hir::Mutability,
1278                           expr: &hir::Expr)
1279                           -> io::Result<()> {
1280         self.s.word("&")?;
1281         self.print_mutability(mutability)?;
1282         self.print_expr_maybe_paren(expr, parser::PREC_PREFIX)
1283     }
1284
1285     pub fn print_expr(&mut self, expr: &hir::Expr) -> io::Result<()> {
1286         self.maybe_print_comment(expr.span.lo())?;
1287         self.print_outer_attributes(&expr.attrs)?;
1288         self.ibox(indent_unit)?;
1289         self.ann.pre(self, NodeExpr(expr))?;
1290         match expr.node {
1291             hir::ExprBox(ref expr) => {
1292                 self.word_space("box")?;
1293                 self.print_expr_maybe_paren(expr, parser::PREC_PREFIX)?;
1294             }
1295             hir::ExprArray(ref exprs) => {
1296                 self.print_expr_vec(exprs)?;
1297             }
1298             hir::ExprRepeat(ref element, count) => {
1299                 self.print_expr_repeat(&element, count)?;
1300             }
1301             hir::ExprStruct(ref qpath, ref fields, ref wth) => {
1302                 self.print_expr_struct(qpath, &fields[..], wth)?;
1303             }
1304             hir::ExprTup(ref exprs) => {
1305                 self.print_expr_tup(exprs)?;
1306             }
1307             hir::ExprCall(ref func, ref args) => {
1308                 self.print_expr_call(&func, args)?;
1309             }
1310             hir::ExprMethodCall(ref segment, _, ref args) => {
1311                 self.print_expr_method_call(segment, args)?;
1312             }
1313             hir::ExprBinary(op, ref lhs, ref rhs) => {
1314                 self.print_expr_binary(op, &lhs, &rhs)?;
1315             }
1316             hir::ExprUnary(op, ref expr) => {
1317                 self.print_expr_unary(op, &expr)?;
1318             }
1319             hir::ExprAddrOf(m, ref expr) => {
1320                 self.print_expr_addr_of(m, &expr)?;
1321             }
1322             hir::ExprLit(ref lit) => {
1323                 self.print_literal(&lit)?;
1324             }
1325             hir::ExprCast(ref expr, ref ty) => {
1326                 let prec = AssocOp::As.precedence() as i8;
1327                 self.print_expr_maybe_paren(&expr, prec)?;
1328                 self.s.space()?;
1329                 self.word_space("as")?;
1330                 self.print_type(&ty)?;
1331             }
1332             hir::ExprType(ref expr, ref ty) => {
1333                 let prec = AssocOp::Colon.precedence() as i8;
1334                 self.print_expr_maybe_paren(&expr, prec)?;
1335                 self.word_space(":")?;
1336                 self.print_type(&ty)?;
1337             }
1338             hir::ExprIf(ref test, ref blk, ref elseopt) => {
1339                 self.print_if(&test, &blk, elseopt.as_ref().map(|e| &**e))?;
1340             }
1341             hir::ExprWhile(ref test, ref blk, opt_sp_name) => {
1342                 if let Some(sp_name) = opt_sp_name {
1343                     self.print_name(sp_name.node)?;
1344                     self.word_space(":")?;
1345                 }
1346                 self.head("while")?;
1347                 self.print_expr_as_cond(&test)?;
1348                 self.s.space()?;
1349                 self.print_block(&blk)?;
1350             }
1351             hir::ExprLoop(ref blk, opt_sp_name, _) => {
1352                 if let Some(sp_name) = opt_sp_name {
1353                     self.print_name(sp_name.node)?;
1354                     self.word_space(":")?;
1355                 }
1356                 self.head("loop")?;
1357                 self.s.space()?;
1358                 self.print_block(&blk)?;
1359             }
1360             hir::ExprMatch(ref expr, ref arms, _) => {
1361                 self.cbox(indent_unit)?;
1362                 self.ibox(4)?;
1363                 self.word_nbsp("match")?;
1364                 self.print_expr_as_cond(&expr)?;
1365                 self.s.space()?;
1366                 self.bopen()?;
1367                 for arm in arms {
1368                     self.print_arm(arm)?;
1369                 }
1370                 self.bclose_(expr.span, indent_unit)?;
1371             }
1372             hir::ExprClosure(capture_clause, ref decl, body, _fn_decl_span, _gen) => {
1373                 self.print_capture_clause(capture_clause)?;
1374
1375                 self.print_closure_args(&decl, body)?;
1376                 self.s.space()?;
1377
1378                 // this is a bare expression
1379                 self.ann.nested(self, Nested::Body(body))?;
1380                 self.end()?; // need to close a box
1381
1382                 // a box will be closed by print_expr, but we didn't want an overall
1383                 // wrapper so we closed the corresponding opening. so create an
1384                 // empty box to satisfy the close.
1385                 self.ibox(0)?;
1386             }
1387             hir::ExprBlock(ref blk) => {
1388                 // containing cbox, will be closed by print-block at }
1389                 self.cbox(indent_unit)?;
1390                 // head-box, will be closed by print-block after {
1391                 self.ibox(0)?;
1392                 self.print_block(&blk)?;
1393             }
1394             hir::ExprAssign(ref lhs, ref rhs) => {
1395                 let prec = AssocOp::Assign.precedence() as i8;
1396                 self.print_expr_maybe_paren(&lhs, prec + 1)?;
1397                 self.s.space()?;
1398                 self.word_space("=")?;
1399                 self.print_expr_maybe_paren(&rhs, prec)?;
1400             }
1401             hir::ExprAssignOp(op, ref lhs, ref rhs) => {
1402                 let prec = AssocOp::Assign.precedence() as i8;
1403                 self.print_expr_maybe_paren(&lhs, prec + 1)?;
1404                 self.s.space()?;
1405                 self.s.word(op.node.as_str())?;
1406                 self.word_space("=")?;
1407                 self.print_expr_maybe_paren(&rhs, prec)?;
1408             }
1409             hir::ExprField(ref expr, name) => {
1410                 self.print_expr_maybe_paren(expr, parser::PREC_POSTFIX)?;
1411                 self.s.word(".")?;
1412                 self.print_name(name.node)?;
1413             }
1414             hir::ExprTupField(ref expr, id) => {
1415                 self.print_expr_maybe_paren(&expr, parser::PREC_POSTFIX)?;
1416                 self.s.word(".")?;
1417                 self.print_usize(id.node)?;
1418             }
1419             hir::ExprIndex(ref expr, ref index) => {
1420                 self.print_expr_maybe_paren(&expr, parser::PREC_POSTFIX)?;
1421                 self.s.word("[")?;
1422                 self.print_expr(&index)?;
1423                 self.s.word("]")?;
1424             }
1425             hir::ExprPath(ref qpath) => {
1426                 self.print_qpath(qpath, true)?
1427             }
1428             hir::ExprBreak(label, ref opt_expr) => {
1429                 self.s.word("break")?;
1430                 self.s.space()?;
1431                 if let Some(label_ident) = label.ident {
1432                     self.print_name(label_ident.node.name)?;
1433                     self.s.space()?;
1434                 }
1435                 if let Some(ref expr) = *opt_expr {
1436                     self.print_expr_maybe_paren(expr, parser::PREC_JUMP)?;
1437                     self.s.space()?;
1438                 }
1439             }
1440             hir::ExprAgain(label) => {
1441                 self.s.word("continue")?;
1442                 self.s.space()?;
1443                 if let Some(label_ident) = label.ident {
1444                     self.print_name(label_ident.node.name)?;
1445                     self.s.space()?
1446                 }
1447             }
1448             hir::ExprRet(ref result) => {
1449                 self.s.word("return")?;
1450                 match *result {
1451                     Some(ref expr) => {
1452                         self.s.word(" ")?;
1453                         self.print_expr_maybe_paren(&expr, parser::PREC_JUMP)?;
1454                     }
1455                     _ => (),
1456                 }
1457             }
1458             hir::ExprInlineAsm(ref a, ref outputs, ref inputs) => {
1459                 self.s.word("asm!")?;
1460                 self.popen()?;
1461                 self.print_string(&a.asm.as_str(), a.asm_str_style)?;
1462                 self.word_space(":")?;
1463
1464                 let mut out_idx = 0;
1465                 self.commasep(Inconsistent, &a.outputs, |s, out| {
1466                     let constraint = out.constraint.as_str();
1467                     let mut ch = constraint.chars();
1468                     match ch.next() {
1469                         Some('=') if out.is_rw => {
1470                             s.print_string(&format!("+{}", ch.as_str()),
1471                                            ast::StrStyle::Cooked)?
1472                         }
1473                         _ => s.print_string(&constraint, ast::StrStyle::Cooked)?,
1474                     }
1475                     s.popen()?;
1476                     s.print_expr(&outputs[out_idx])?;
1477                     s.pclose()?;
1478                     out_idx += 1;
1479                     Ok(())
1480                 })?;
1481                 self.s.space()?;
1482                 self.word_space(":")?;
1483
1484                 let mut in_idx = 0;
1485                 self.commasep(Inconsistent, &a.inputs, |s, co| {
1486                     s.print_string(&co.as_str(), ast::StrStyle::Cooked)?;
1487                     s.popen()?;
1488                     s.print_expr(&inputs[in_idx])?;
1489                     s.pclose()?;
1490                     in_idx += 1;
1491                     Ok(())
1492                 })?;
1493                 self.s.space()?;
1494                 self.word_space(":")?;
1495
1496                 self.commasep(Inconsistent, &a.clobbers, |s, co| {
1497                     s.print_string(&co.as_str(), ast::StrStyle::Cooked)?;
1498                     Ok(())
1499                 })?;
1500
1501                 let mut options = vec![];
1502                 if a.volatile {
1503                     options.push("volatile");
1504                 }
1505                 if a.alignstack {
1506                     options.push("alignstack");
1507                 }
1508                 if a.dialect == ast::AsmDialect::Intel {
1509                     options.push("intel");
1510                 }
1511
1512                 if !options.is_empty() {
1513                     self.s.space()?;
1514                     self.word_space(":")?;
1515                     self.commasep(Inconsistent, &options, |s, &co| {
1516                         s.print_string(co, ast::StrStyle::Cooked)?;
1517                         Ok(())
1518                     })?;
1519                 }
1520
1521                 self.pclose()?;
1522             }
1523             hir::ExprYield(ref expr) => {
1524                 self.word_space("yield")?;
1525                 self.print_expr_maybe_paren(&expr, parser::PREC_JUMP)?;
1526             }
1527         }
1528         self.ann.post(self, NodeExpr(expr))?;
1529         self.end()
1530     }
1531
1532     pub fn print_local_decl(&mut self, loc: &hir::Local) -> io::Result<()> {
1533         self.print_pat(&loc.pat)?;
1534         if let Some(ref ty) = loc.ty {
1535             self.word_space(":")?;
1536             self.print_type(&ty)?;
1537         }
1538         Ok(())
1539     }
1540
1541     pub fn print_decl(&mut self, decl: &hir::Decl) -> io::Result<()> {
1542         self.maybe_print_comment(decl.span.lo())?;
1543         match decl.node {
1544             hir::DeclLocal(ref loc) => {
1545                 self.space_if_not_bol()?;
1546                 self.ibox(indent_unit)?;
1547                 self.word_nbsp("let")?;
1548
1549                 self.ibox(indent_unit)?;
1550                 self.print_local_decl(&loc)?;
1551                 self.end()?;
1552                 if let Some(ref init) = loc.init {
1553                     self.nbsp()?;
1554                     self.word_space("=")?;
1555                     self.print_expr(&init)?;
1556                 }
1557                 self.end()
1558             }
1559             hir::DeclItem(item) => {
1560                 self.ann.nested(self, Nested::Item(item))
1561             }
1562         }
1563     }
1564
1565     pub fn print_usize(&mut self, i: usize) -> io::Result<()> {
1566         self.s.word(&i.to_string())
1567     }
1568
1569     pub fn print_name(&mut self, name: ast::Name) -> io::Result<()> {
1570         self.s.word(&name.as_str())?;
1571         self.ann.post(self, NodeName(&name))
1572     }
1573
1574     pub fn print_for_decl(&mut self, loc: &hir::Local, coll: &hir::Expr) -> io::Result<()> {
1575         self.print_local_decl(loc)?;
1576         self.s.space()?;
1577         self.word_space("in")?;
1578         self.print_expr(coll)
1579     }
1580
1581     pub fn print_path(&mut self,
1582                       path: &hir::Path,
1583                       colons_before_params: bool)
1584                       -> io::Result<()> {
1585         self.maybe_print_comment(path.span.lo())?;
1586
1587         for (i, segment) in path.segments.iter().enumerate() {
1588             if i > 0 {
1589                 self.s.word("::")?
1590             }
1591             if segment.name != keywords::CrateRoot.name() &&
1592                segment.name != keywords::DollarCrate.name() {
1593                self.print_name(segment.name)?;
1594                segment.with_parameters(|parameters| {
1595                    self.print_path_parameters(parameters,
1596                                               segment.infer_types,
1597                                               colons_before_params)
1598                })?;
1599             }
1600         }
1601
1602         Ok(())
1603     }
1604
1605     pub fn print_qpath(&mut self,
1606                        qpath: &hir::QPath,
1607                        colons_before_params: bool)
1608                        -> io::Result<()> {
1609         match *qpath {
1610             hir::QPath::Resolved(None, ref path) => {
1611                 self.print_path(path, colons_before_params)
1612             }
1613             hir::QPath::Resolved(Some(ref qself), ref path) => {
1614                 self.s.word("<")?;
1615                 self.print_type(qself)?;
1616                 self.s.space()?;
1617                 self.word_space("as")?;
1618
1619                 for (i, segment) in path.segments[..path.segments.len() - 1].iter().enumerate() {
1620                     if i > 0 {
1621                         self.s.word("::")?
1622                     }
1623                     if segment.name != keywords::CrateRoot.name() &&
1624                        segment.name != keywords::DollarCrate.name() {
1625                         self.print_name(segment.name)?;
1626                         segment.with_parameters(|parameters| {
1627                             self.print_path_parameters(parameters,
1628                                                        segment.infer_types,
1629                                                        colons_before_params)
1630                         })?;
1631                     }
1632                 }
1633
1634                 self.s.word(">")?;
1635                 self.s.word("::")?;
1636                 let item_segment = path.segments.last().unwrap();
1637                 self.print_name(item_segment.name)?;
1638                 item_segment.with_parameters(|parameters| {
1639                     self.print_path_parameters(parameters,
1640                                                item_segment.infer_types,
1641                                                colons_before_params)
1642                 })
1643             }
1644             hir::QPath::TypeRelative(ref qself, ref item_segment) => {
1645                 self.s.word("<")?;
1646                 self.print_type(qself)?;
1647                 self.s.word(">")?;
1648                 self.s.word("::")?;
1649                 self.print_name(item_segment.name)?;
1650                 item_segment.with_parameters(|parameters| {
1651                     self.print_path_parameters(parameters,
1652                                                item_segment.infer_types,
1653                                                colons_before_params)
1654                 })
1655             }
1656         }
1657     }
1658
1659     fn print_path_parameters(&mut self,
1660                              parameters: &hir::PathParameters,
1661                              infer_types: bool,
1662                              colons_before_params: bool)
1663                              -> io::Result<()> {
1664         if parameters.parenthesized {
1665             self.s.word("(")?;
1666             self.commasep(Inconsistent, parameters.inputs(), |s, ty| s.print_type(&ty))?;
1667             self.s.word(")")?;
1668
1669             self.space_if_not_bol()?;
1670             self.word_space("->")?;
1671             self.print_type(&parameters.bindings[0].ty)?;
1672         } else {
1673             let start = if colons_before_params { "::<" } else { "<" };
1674             let empty = Cell::new(true);
1675             let start_or_comma = |this: &mut Self| {
1676                 if empty.get() {
1677                     empty.set(false);
1678                     this.s.word(start)
1679                 } else {
1680                     this.word_space(",")
1681                 }
1682             };
1683
1684             if !parameters.lifetimes.iter().all(|lt| lt.is_elided()) {
1685                 for lifetime in &parameters.lifetimes {
1686                     start_or_comma(self)?;
1687                     self.print_lifetime(lifetime)?;
1688                 }
1689             }
1690
1691             if !parameters.types.is_empty() {
1692                 start_or_comma(self)?;
1693                 self.commasep(Inconsistent, &parameters.types, |s, ty| s.print_type(&ty))?;
1694             }
1695
1696             // FIXME(eddyb) This would leak into error messages, e.g.:
1697             // "non-exhaustive patterns: `Some::<..>(_)` not covered".
1698             if infer_types && false {
1699                 start_or_comma(self)?;
1700                 self.s.word("..")?;
1701             }
1702
1703             for binding in parameters.bindings.iter() {
1704                 start_or_comma(self)?;
1705                 self.print_name(binding.name)?;
1706                 self.s.space()?;
1707                 self.word_space("=")?;
1708                 self.print_type(&binding.ty)?;
1709             }
1710
1711             if !empty.get() {
1712                 self.s.word(">")?
1713             }
1714         }
1715
1716         Ok(())
1717     }
1718
1719     pub fn print_pat(&mut self, pat: &hir::Pat) -> io::Result<()> {
1720         self.maybe_print_comment(pat.span.lo())?;
1721         self.ann.pre(self, NodePat(pat))?;
1722         // Pat isn't normalized, but the beauty of it
1723         // is that it doesn't matter
1724         match pat.node {
1725             PatKind::Wild => self.s.word("_")?,
1726             PatKind::Binding(binding_mode, _, ref path1, ref sub) => {
1727                 match binding_mode {
1728                     hir::BindingAnnotation::Ref => {
1729                         self.word_nbsp("ref")?;
1730                         self.print_mutability(hir::MutImmutable)?;
1731                     }
1732                     hir::BindingAnnotation::RefMut => {
1733                         self.word_nbsp("ref")?;
1734                         self.print_mutability(hir::MutMutable)?;
1735                     }
1736                     hir::BindingAnnotation::Unannotated => {}
1737                     hir::BindingAnnotation::Mutable => {
1738                         self.word_nbsp("mut")?;
1739                     }
1740                 }
1741                 self.print_name(path1.node)?;
1742                 if let Some(ref p) = *sub {
1743                     self.s.word("@")?;
1744                     self.print_pat(&p)?;
1745                 }
1746             }
1747             PatKind::TupleStruct(ref qpath, ref elts, ddpos) => {
1748                 self.print_qpath(qpath, true)?;
1749                 self.popen()?;
1750                 if let Some(ddpos) = ddpos {
1751                     self.commasep(Inconsistent, &elts[..ddpos], |s, p| s.print_pat(&p))?;
1752                     if ddpos != 0 {
1753                         self.word_space(",")?;
1754                     }
1755                     self.s.word("..")?;
1756                     if ddpos != elts.len() {
1757                         self.s.word(",")?;
1758                         self.commasep(Inconsistent, &elts[ddpos..], |s, p| s.print_pat(&p))?;
1759                     }
1760                 } else {
1761                     self.commasep(Inconsistent, &elts[..], |s, p| s.print_pat(&p))?;
1762                 }
1763                 self.pclose()?;
1764             }
1765             PatKind::Path(ref qpath) => {
1766                 self.print_qpath(qpath, true)?;
1767             }
1768             PatKind::Struct(ref qpath, ref fields, etc) => {
1769                 self.print_qpath(qpath, true)?;
1770                 self.nbsp()?;
1771                 self.word_space("{")?;
1772                 self.commasep_cmnt(Consistent,
1773                                    &fields[..],
1774                                    |s, f| {
1775                                        s.cbox(indent_unit)?;
1776                                        if !f.node.is_shorthand {
1777                                            s.print_name(f.node.name)?;
1778                                            s.word_nbsp(":")?;
1779                                        }
1780                                        s.print_pat(&f.node.pat)?;
1781                                        s.end()
1782                                    },
1783                                    |f| f.node.pat.span)?;
1784                 if etc {
1785                     if !fields.is_empty() {
1786                         self.word_space(",")?;
1787                     }
1788                     self.s.word("..")?;
1789                 }
1790                 self.s.space()?;
1791                 self.s.word("}")?;
1792             }
1793             PatKind::Tuple(ref elts, ddpos) => {
1794                 self.popen()?;
1795                 if let Some(ddpos) = ddpos {
1796                     self.commasep(Inconsistent, &elts[..ddpos], |s, p| s.print_pat(&p))?;
1797                     if ddpos != 0 {
1798                         self.word_space(",")?;
1799                     }
1800                     self.s.word("..")?;
1801                     if ddpos != elts.len() {
1802                         self.s.word(",")?;
1803                         self.commasep(Inconsistent, &elts[ddpos..], |s, p| s.print_pat(&p))?;
1804                     }
1805                 } else {
1806                     self.commasep(Inconsistent, &elts[..], |s, p| s.print_pat(&p))?;
1807                     if elts.len() == 1 {
1808                         self.s.word(",")?;
1809                     }
1810                 }
1811                 self.pclose()?;
1812             }
1813             PatKind::Box(ref inner) => {
1814                 self.s.word("box ")?;
1815                 self.print_pat(&inner)?;
1816             }
1817             PatKind::Ref(ref inner, mutbl) => {
1818                 self.s.word("&")?;
1819                 if mutbl == hir::MutMutable {
1820                     self.s.word("mut ")?;
1821                 }
1822                 self.print_pat(&inner)?;
1823             }
1824             PatKind::Lit(ref e) => self.print_expr(&e)?,
1825             PatKind::Range(ref begin, ref end, ref end_kind) => {
1826                 self.print_expr(&begin)?;
1827                 self.s.space()?;
1828                 match *end_kind {
1829                     RangeEnd::Included => self.s.word("...")?,
1830                     RangeEnd::Excluded => self.s.word("..")?,
1831                 }
1832                 self.print_expr(&end)?;
1833             }
1834             PatKind::Slice(ref before, ref slice, ref after) => {
1835                 self.s.word("[")?;
1836                 self.commasep(Inconsistent, &before[..], |s, p| s.print_pat(&p))?;
1837                 if let Some(ref p) = *slice {
1838                     if !before.is_empty() {
1839                         self.word_space(",")?;
1840                     }
1841                     if p.node != PatKind::Wild {
1842                         self.print_pat(&p)?;
1843                     }
1844                     self.s.word("..")?;
1845                     if !after.is_empty() {
1846                         self.word_space(",")?;
1847                     }
1848                 }
1849                 self.commasep(Inconsistent, &after[..], |s, p| s.print_pat(&p))?;
1850                 self.s.word("]")?;
1851             }
1852         }
1853         self.ann.post(self, NodePat(pat))
1854     }
1855
1856     fn print_arm(&mut self, arm: &hir::Arm) -> io::Result<()> {
1857         // I have no idea why this check is necessary, but here it
1858         // is :(
1859         if arm.attrs.is_empty() {
1860             self.s.space()?;
1861         }
1862         self.cbox(indent_unit)?;
1863         self.ibox(0)?;
1864         self.print_outer_attributes(&arm.attrs)?;
1865         let mut first = true;
1866         for p in &arm.pats {
1867             if first {
1868                 first = false;
1869             } else {
1870                 self.s.space()?;
1871                 self.word_space("|")?;
1872             }
1873             self.print_pat(&p)?;
1874         }
1875         self.s.space()?;
1876         if let Some(ref e) = arm.guard {
1877             self.word_space("if")?;
1878             self.print_expr(&e)?;
1879             self.s.space()?;
1880         }
1881         self.word_space("=>")?;
1882
1883         match arm.body.node {
1884             hir::ExprBlock(ref blk) => {
1885                 // the block will close the pattern's ibox
1886                 self.print_block_unclosed_indent(&blk, indent_unit)?;
1887
1888                 // If it is a user-provided unsafe block, print a comma after it
1889                 if let hir::UnsafeBlock(hir::UserProvided) = blk.rules {
1890                     self.s.word(",")?;
1891                 }
1892             }
1893             _ => {
1894                 self.end()?; // close the ibox for the pattern
1895                 self.print_expr(&arm.body)?;
1896                 self.s.word(",")?;
1897             }
1898         }
1899         self.end() // close enclosing cbox
1900     }
1901
1902     pub fn print_fn(&mut self,
1903                     decl: &hir::FnDecl,
1904                     unsafety: hir::Unsafety,
1905                     constness: hir::Constness,
1906                     abi: Abi,
1907                     name: Option<ast::Name>,
1908                     generics: &hir::Generics,
1909                     vis: &hir::Visibility,
1910                     arg_names: &[Spanned<ast::Name>],
1911                     body_id: Option<hir::BodyId>)
1912                     -> io::Result<()> {
1913         self.print_fn_header_info(unsafety, constness, abi, vis)?;
1914
1915         if let Some(name) = name {
1916             self.nbsp()?;
1917             self.print_name(name)?;
1918         }
1919         self.print_generics(generics)?;
1920
1921         self.popen()?;
1922         let mut i = 0;
1923         // Make sure we aren't supplied *both* `arg_names` and `body_id`.
1924         assert!(arg_names.is_empty() || body_id.is_none());
1925         self.commasep(Inconsistent, &decl.inputs, |s, ty| {
1926             s.ibox(indent_unit)?;
1927             if let Some(name) = arg_names.get(i) {
1928                 s.s.word(&name.node.as_str())?;
1929                 s.s.word(":")?;
1930                 s.s.space()?;
1931             } else if let Some(body_id) = body_id {
1932                 s.ann.nested(s, Nested::BodyArgPat(body_id, i))?;
1933                 s.s.word(":")?;
1934                 s.s.space()?;
1935             }
1936             i += 1;
1937             s.print_type(ty)?;
1938             s.end()
1939         })?;
1940         if decl.variadic {
1941             self.s.word(", ...")?;
1942         }
1943         self.pclose()?;
1944
1945         self.print_fn_output(decl)?;
1946         self.print_where_clause(&generics.where_clause)
1947     }
1948
1949     fn print_closure_args(&mut self, decl: &hir::FnDecl, body_id: hir::BodyId) -> io::Result<()> {
1950         self.s.word("|")?;
1951         let mut i = 0;
1952         self.commasep(Inconsistent, &decl.inputs, |s, ty| {
1953             s.ibox(indent_unit)?;
1954
1955             s.ann.nested(s, Nested::BodyArgPat(body_id, i))?;
1956             i += 1;
1957
1958             if ty.node != hir::TyInfer {
1959                 s.s.word(":")?;
1960                 s.s.space()?;
1961                 s.print_type(ty)?;
1962             }
1963             s.end()
1964         })?;
1965         self.s.word("|")?;
1966
1967         if let hir::DefaultReturn(..) = decl.output {
1968             return Ok(());
1969         }
1970
1971         self.space_if_not_bol()?;
1972         self.word_space("->")?;
1973         match decl.output {
1974             hir::Return(ref ty) => {
1975                 self.print_type(&ty)?;
1976                 self.maybe_print_comment(ty.span.lo())
1977             }
1978             hir::DefaultReturn(..) => unreachable!(),
1979         }
1980     }
1981
1982     pub fn print_capture_clause(&mut self, capture_clause: hir::CaptureClause) -> io::Result<()> {
1983         match capture_clause {
1984             hir::CaptureByValue => self.word_space("move"),
1985             hir::CaptureByRef => Ok(()),
1986         }
1987     }
1988
1989     pub fn print_bounds(&mut self, prefix: &str, bounds: &[hir::TyParamBound]) -> io::Result<()> {
1990         if !bounds.is_empty() {
1991             self.s.word(prefix)?;
1992             let mut first = true;
1993             for bound in bounds {
1994                 self.nbsp()?;
1995                 if first {
1996                     first = false;
1997                 } else {
1998                     self.word_space("+")?;
1999                 }
2000
2001                 match *bound {
2002                     TraitTyParamBound(ref tref, TraitBoundModifier::None) => {
2003                         self.print_poly_trait_ref(tref)
2004                     }
2005                     TraitTyParamBound(ref tref, TraitBoundModifier::Maybe) => {
2006                         self.s.word("?")?;
2007                         self.print_poly_trait_ref(tref)
2008                     }
2009                     RegionTyParamBound(ref lt) => {
2010                         self.print_lifetime(lt)
2011                     }
2012                 }?
2013             }
2014             Ok(())
2015         } else {
2016             Ok(())
2017         }
2018     }
2019
2020     pub fn print_lifetime(&mut self, lifetime: &hir::Lifetime) -> io::Result<()> {
2021         self.print_name(lifetime.name.name())
2022     }
2023
2024     pub fn print_lifetime_def(&mut self, lifetime: &hir::LifetimeDef) -> io::Result<()> {
2025         self.print_lifetime(&lifetime.lifetime)?;
2026         let mut sep = ":";
2027         for v in &lifetime.bounds {
2028             self.s.word(sep)?;
2029             self.print_lifetime(v)?;
2030             sep = "+";
2031         }
2032         Ok(())
2033     }
2034
2035     pub fn print_generics(&mut self, generics: &hir::Generics) -> io::Result<()> {
2036         let total = generics.lifetimes.len() + generics.ty_params.len();
2037         if total == 0 {
2038             return Ok(());
2039         }
2040
2041         self.s.word("<")?;
2042
2043         let mut ints = Vec::new();
2044         for i in 0..total {
2045             ints.push(i);
2046         }
2047
2048         self.commasep(Inconsistent, &ints[..], |s, &idx| {
2049             if idx < generics.lifetimes.len() {
2050                 let lifetime = &generics.lifetimes[idx];
2051                 s.print_lifetime_def(lifetime)
2052             } else {
2053                 let idx = idx - generics.lifetimes.len();
2054                 let param = &generics.ty_params[idx];
2055                 s.print_ty_param(param)
2056             }
2057         })?;
2058
2059         self.s.word(">")?;
2060         Ok(())
2061     }
2062
2063     pub fn print_ty_param(&mut self, param: &hir::TyParam) -> io::Result<()> {
2064         self.print_name(param.name)?;
2065         self.print_bounds(":", &param.bounds)?;
2066         match param.default {
2067             Some(ref default) => {
2068                 self.s.space()?;
2069                 self.word_space("=")?;
2070                 self.print_type(&default)
2071             }
2072             _ => Ok(()),
2073         }
2074     }
2075
2076     pub fn print_where_clause(&mut self, where_clause: &hir::WhereClause) -> io::Result<()> {
2077         if where_clause.predicates.is_empty() {
2078             return Ok(());
2079         }
2080
2081         self.s.space()?;
2082         self.word_space("where")?;
2083
2084         for (i, predicate) in where_clause.predicates.iter().enumerate() {
2085             if i != 0 {
2086                 self.word_space(",")?;
2087             }
2088
2089             match predicate {
2090                 &hir::WherePredicate::BoundPredicate(hir::WhereBoundPredicate{ref bound_lifetimes,
2091                                                                               ref bounded_ty,
2092                                                                               ref bounds,
2093                                                                               ..}) => {
2094                     self.print_formal_lifetime_list(bound_lifetimes)?;
2095                     self.print_type(&bounded_ty)?;
2096                     self.print_bounds(":", bounds)?;
2097                 }
2098                 &hir::WherePredicate::RegionPredicate(hir::WhereRegionPredicate{ref lifetime,
2099                                                                                 ref bounds,
2100                                                                                 ..}) => {
2101                     self.print_lifetime(lifetime)?;
2102                     self.s.word(":")?;
2103
2104                     for (i, bound) in bounds.iter().enumerate() {
2105                         self.print_lifetime(bound)?;
2106
2107                         if i != 0 {
2108                             self.s.word(":")?;
2109                         }
2110                     }
2111                 }
2112                 &hir::WherePredicate::EqPredicate(hir::WhereEqPredicate{ref lhs_ty,
2113                                                                         ref rhs_ty,
2114                                                                         ..}) => {
2115                     self.print_type(lhs_ty)?;
2116                     self.s.space()?;
2117                     self.word_space("=")?;
2118                     self.print_type(rhs_ty)?;
2119                 }
2120             }
2121         }
2122
2123         Ok(())
2124     }
2125
2126     pub fn print_mutability(&mut self, mutbl: hir::Mutability) -> io::Result<()> {
2127         match mutbl {
2128             hir::MutMutable => self.word_nbsp("mut"),
2129             hir::MutImmutable => Ok(()),
2130         }
2131     }
2132
2133     pub fn print_mt(&mut self, mt: &hir::MutTy) -> io::Result<()> {
2134         self.print_mutability(mt.mutbl)?;
2135         self.print_type(&mt.ty)
2136     }
2137
2138     pub fn print_fn_output(&mut self, decl: &hir::FnDecl) -> io::Result<()> {
2139         if let hir::DefaultReturn(..) = decl.output {
2140             return Ok(());
2141         }
2142
2143         self.space_if_not_bol()?;
2144         self.ibox(indent_unit)?;
2145         self.word_space("->")?;
2146         match decl.output {
2147             hir::DefaultReturn(..) => unreachable!(),
2148             hir::Return(ref ty) => self.print_type(&ty)?,
2149         }
2150         self.end()?;
2151
2152         match decl.output {
2153             hir::Return(ref output) => self.maybe_print_comment(output.span.lo()),
2154             _ => Ok(()),
2155         }
2156     }
2157
2158     pub fn print_ty_fn(&mut self,
2159                        abi: Abi,
2160                        unsafety: hir::Unsafety,
2161                        decl: &hir::FnDecl,
2162                        name: Option<ast::Name>,
2163                        generics: &hir::Generics,
2164                        arg_names: &[Spanned<ast::Name>])
2165                        -> io::Result<()> {
2166         self.ibox(indent_unit)?;
2167         if !generics.lifetimes.is_empty() || !generics.ty_params.is_empty() {
2168             self.s.word("for")?;
2169             self.print_generics(generics)?;
2170         }
2171         let generics = hir::Generics {
2172             lifetimes: hir::HirVec::new(),
2173             ty_params: hir::HirVec::new(),
2174             where_clause: hir::WhereClause {
2175                 id: ast::DUMMY_NODE_ID,
2176                 predicates: hir::HirVec::new(),
2177             },
2178             span: syntax_pos::DUMMY_SP,
2179         };
2180         self.print_fn(decl,
2181                       unsafety,
2182                       hir::Constness::NotConst,
2183                       abi,
2184                       name,
2185                       &generics,
2186                       &hir::Inherited,
2187                       arg_names,
2188                       None)?;
2189         self.end()
2190     }
2191
2192     pub fn maybe_print_trailing_comment(&mut self,
2193                                         span: syntax_pos::Span,
2194                                         next_pos: Option<BytePos>)
2195                                         -> io::Result<()> {
2196         let cm = match self.cm {
2197             Some(cm) => cm,
2198             _ => return Ok(()),
2199         };
2200         if let Some(ref cmnt) = self.next_comment() {
2201             if (*cmnt).style != comments::Trailing {
2202                 return Ok(());
2203             }
2204             let span_line = cm.lookup_char_pos(span.hi());
2205             let comment_line = cm.lookup_char_pos((*cmnt).pos);
2206             let mut next = (*cmnt).pos + BytePos(1);
2207             if let Some(p) = next_pos {
2208                 next = p;
2209             }
2210             if span.hi() < (*cmnt).pos && (*cmnt).pos < next &&
2211                span_line.line == comment_line.line {
2212                 self.print_comment(cmnt)?;
2213             }
2214         }
2215         Ok(())
2216     }
2217
2218     pub fn print_remaining_comments(&mut self) -> io::Result<()> {
2219         // If there aren't any remaining comments, then we need to manually
2220         // make sure there is a line break at the end.
2221         if self.next_comment().is_none() {
2222             self.s.hardbreak()?;
2223         }
2224         loop {
2225             match self.next_comment() {
2226                 Some(ref cmnt) => {
2227                     self.print_comment(cmnt)?;
2228                 }
2229                 _ => break,
2230             }
2231         }
2232         Ok(())
2233     }
2234
2235     pub fn print_opt_abi_and_extern_if_nondefault(&mut self,
2236                                                   opt_abi: Option<Abi>)
2237                                                   -> io::Result<()> {
2238         match opt_abi {
2239             Some(Abi::Rust) => Ok(()),
2240             Some(abi) => {
2241                 self.word_nbsp("extern")?;
2242                 self.word_nbsp(&abi.to_string())
2243             }
2244             None => Ok(()),
2245         }
2246     }
2247
2248     pub fn print_extern_opt_abi(&mut self, opt_abi: Option<Abi>) -> io::Result<()> {
2249         match opt_abi {
2250             Some(abi) => {
2251                 self.word_nbsp("extern")?;
2252                 self.word_nbsp(&abi.to_string())
2253             }
2254             None => Ok(()),
2255         }
2256     }
2257
2258     pub fn print_fn_header_info(&mut self,
2259                                 unsafety: hir::Unsafety,
2260                                 constness: hir::Constness,
2261                                 abi: Abi,
2262                                 vis: &hir::Visibility)
2263                                 -> io::Result<()> {
2264         self.s.word(&visibility_qualified(vis, ""))?;
2265         self.print_unsafety(unsafety)?;
2266
2267         match constness {
2268             hir::Constness::NotConst => {}
2269             hir::Constness::Const => self.word_nbsp("const")?,
2270         }
2271
2272         if abi != Abi::Rust {
2273             self.word_nbsp("extern")?;
2274             self.word_nbsp(&abi.to_string())?;
2275         }
2276
2277         self.s.word("fn")
2278     }
2279
2280     pub fn print_unsafety(&mut self, s: hir::Unsafety) -> io::Result<()> {
2281         match s {
2282             hir::Unsafety::Normal => Ok(()),
2283             hir::Unsafety::Unsafe => self.word_nbsp("unsafe"),
2284         }
2285     }
2286 }
2287
2288 // Dup'ed from parse::classify, but adapted for the HIR.
2289 /// Does this expression require a semicolon to be treated
2290 /// as a statement? The negation of this: 'can this expression
2291 /// be used as a statement without a semicolon' -- is used
2292 /// as an early-bail-out in the parser so that, for instance,
2293 ///     if true {...} else {...}
2294 ///      |x| 5
2295 /// isn't parsed as (if true {...} else {...} | x) | 5
2296 fn expr_requires_semi_to_be_stmt(e: &hir::Expr) -> bool {
2297     match e.node {
2298         hir::ExprIf(..) |
2299         hir::ExprMatch(..) |
2300         hir::ExprBlock(_) |
2301         hir::ExprWhile(..) |
2302         hir::ExprLoop(..) => false,
2303         _ => true,
2304     }
2305 }
2306
2307 /// this statement requires a semicolon after it.
2308 /// note that in one case (stmt_semi), we've already
2309 /// seen the semicolon, and thus don't need another.
2310 fn stmt_ends_with_semi(stmt: &hir::Stmt_) -> bool {
2311     match *stmt {
2312         hir::StmtDecl(ref d, _) => {
2313             match d.node {
2314                 hir::DeclLocal(_) => true,
2315                 hir::DeclItem(_) => false,
2316             }
2317         }
2318         hir::StmtExpr(ref e, _) => {
2319             expr_requires_semi_to_be_stmt(&e)
2320         }
2321         hir::StmtSemi(..) => {
2322             false
2323         }
2324     }
2325 }
2326
2327
2328 fn expr_precedence(expr: &hir::Expr) -> i8 {
2329     use syntax::util::parser::*;
2330
2331     match expr.node {
2332         hir::ExprClosure(..) => PREC_CLOSURE,
2333
2334         hir::ExprBreak(..) |
2335         hir::ExprAgain(..) |
2336         hir::ExprRet(..) |
2337         hir::ExprYield(..) => PREC_JUMP,
2338
2339         // Binop-like expr kinds, handled by `AssocOp`.
2340         hir::ExprBinary(op, _, _) => bin_op_to_assoc_op(op.node).precedence() as i8,
2341
2342         hir::ExprCast(..) => AssocOp::As.precedence() as i8,
2343         hir::ExprType(..) => AssocOp::Colon.precedence() as i8,
2344
2345         hir::ExprAssign(..) |
2346         hir::ExprAssignOp(..) => AssocOp::Assign.precedence() as i8,
2347
2348         // Unary, prefix
2349         hir::ExprBox(..) |
2350         hir::ExprAddrOf(..) |
2351         hir::ExprUnary(..) => PREC_PREFIX,
2352
2353         // Unary, postfix
2354         hir::ExprCall(..) |
2355         hir::ExprMethodCall(..) |
2356         hir::ExprField(..) |
2357         hir::ExprTupField(..) |
2358         hir::ExprIndex(..) |
2359         hir::ExprInlineAsm(..) => PREC_POSTFIX,
2360
2361         // Never need parens
2362         hir::ExprArray(..) |
2363         hir::ExprRepeat(..) |
2364         hir::ExprTup(..) |
2365         hir::ExprLit(..) |
2366         hir::ExprPath(..) |
2367         hir::ExprIf(..) |
2368         hir::ExprWhile(..) |
2369         hir::ExprLoop(..) |
2370         hir::ExprMatch(..) |
2371         hir::ExprBlock(..) |
2372         hir::ExprStruct(..) => PREC_PAREN,
2373     }
2374 }
2375
2376 fn bin_op_to_assoc_op(op: hir::BinOp_) -> AssocOp {
2377     use hir::BinOp_::*;
2378     match op {
2379         BiAdd => AssocOp::Add,
2380         BiSub => AssocOp::Subtract,
2381         BiMul => AssocOp::Multiply,
2382         BiDiv => AssocOp::Divide,
2383         BiRem => AssocOp::Modulus,
2384
2385         BiAnd => AssocOp::LAnd,
2386         BiOr => AssocOp::LOr,
2387
2388         BiBitXor => AssocOp::BitXor,
2389         BiBitAnd => AssocOp::BitAnd,
2390         BiBitOr => AssocOp::BitOr,
2391         BiShl => AssocOp::ShiftLeft,
2392         BiShr => AssocOp::ShiftRight,
2393
2394         BiEq => AssocOp::Equal,
2395         BiLt => AssocOp::Less,
2396         BiLe => AssocOp::LessEqual,
2397         BiNe => AssocOp::NotEqual,
2398         BiGe => AssocOp::GreaterEqual,
2399         BiGt => AssocOp::Greater,
2400     }
2401 }
2402
2403 /// Expressions that syntactically contain an "exterior" struct literal i.e. not surrounded by any
2404 /// parens or other delimiters, e.g. `X { y: 1 }`, `X { y: 1 }.method()`, `foo == X { y: 1 }` and
2405 /// `X { y: 1 } == foo` all do, but `(X { y: 1 }) == foo` does not.
2406 fn contains_exterior_struct_lit(value: &hir::Expr) -> bool {
2407     match value.node {
2408         hir::ExprStruct(..) => true,
2409
2410         hir::ExprAssign(ref lhs, ref rhs) |
2411         hir::ExprAssignOp(_, ref lhs, ref rhs) |
2412         hir::ExprBinary(_, ref lhs, ref rhs) => {
2413             // X { y: 1 } + X { y: 2 }
2414             contains_exterior_struct_lit(&lhs) || contains_exterior_struct_lit(&rhs)
2415         }
2416         hir::ExprUnary(_, ref x) |
2417         hir::ExprCast(ref x, _) |
2418         hir::ExprType(ref x, _) |
2419         hir::ExprField(ref x, _) |
2420         hir::ExprTupField(ref x, _) |
2421         hir::ExprIndex(ref x, _) => {
2422             // &X { y: 1 }, X { y: 1 }.y
2423             contains_exterior_struct_lit(&x)
2424         }
2425
2426         hir::ExprMethodCall(.., ref exprs) => {
2427             // X { y: 1 }.bar(...)
2428             contains_exterior_struct_lit(&exprs[0])
2429         }
2430
2431         _ => false,
2432     }
2433 }