about summary refs log tree commit diff
path: root/src/libsyntax/print
AgeCommit message (Expand)AuthorLines
2014-10-30Use common variants for open and close delimitersBrendan Zabarauskas-10/+9
2014-10-29Rename fail! to panic!Steve Klabnik-4/+4
2014-10-28Update code with new lint namesAaron Turon-2/+2
2014-10-28Move token-to-string functions into print::pprustBrendan Zabarauskas-6/+101
2014-10-28Use PascalCase for token variantsBrendan Zabarauskas-1/+1
2014-10-27rollup merge of #18362 : kevinmehall/pprint-struct-pat-shorthandAlex Crichton-2/+4
2014-10-27rollup merge of #18256 : SimonSapin/view_item_to_stringAlex Crichton-0/+4
2014-10-27Preserve struct field pattern shorthand in the prettyprinter.Kevin Mehall-2/+4
2014-10-26Add a KleeneOp enum for clarityBrendan Zabarauskas-3/+6
2014-10-26Reduce the size of the TokenTreeBrendan Zabarauskas-1/+2
2014-10-26Use standard capitalisation for TokenTree variantsBrendan Zabarauskas-4/+4
2014-10-26Rename TokenTree variants for clarityBrendan Zabarauskas-3/+3
2014-10-26Add Span and separate open/close delims to TTDelimBrendan Zabarauskas-1/+7
2014-10-24Add a lint for not using field pattern shorthandsP1start-3/+3
2014-10-23Add syntax::print::pprint::view_item_to_stringSimon Sapin-0/+4
2014-10-20auto merge of #18070 : alexcrichton/rust/spring-cleaning, r=aturonbors-47/+46
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-47/+46
2014-10-19fix printing signed literal in print_literalAleksandr Koshlo-1/+10
2014-10-13auto merge of #17733 : jgallagher/rust/while-let, r=alexcrichtonbors-0/+13
2014-10-11Remove `virtual` structs from the languageJakub Wieczorek-10/+0
2014-10-10Teach libsyntax about `while let`John Gallagher-0/+13
2014-10-09syntax: Convert statics to constantsAlex Crichton-2/+2
2014-10-09rustc: Add `const` globals to the languageAlex Crichton-0/+14
2014-10-03Set the `non_uppercase_statics` lint to warn by defaultP1start-0/+2
2014-10-02syntax: ast: remove TyBox and UnBox.Eduard Burtescu-4/+0
2014-09-30Produce a better error for irrefutable `if let` patternsKevin Ballard-1/+1
2014-09-30Teach libsyntax about `if let`Kevin Ballard-3/+30
2014-09-26librustc: Eliminate the `ref` syntax for unboxed closure capture clausesPatrick Walton-2/+2
2014-09-22librustc: Parse and resolve higher-rank lifetimes in traits.Patrick Walton-0/+10
2014-09-19rollup merge of #17338 : nick29581/variants-namespaceAlex Crichton-5/+5
2014-09-19rollup merge of #17318 : nick29581/sliceAlex Crichton-1/+23
2014-09-19Add enum variants to the type namespaceNick Cameron-5/+5
2014-09-18librustc: Implement the syntax in the RFC for unboxed closure sugar.Patrick Walton-24/+25
2014-09-19Implement slicing syntax.Nick Cameron-1/+23
2014-09-17librustc: Implement associated types behind a feature gate.Patrick Walton-5/+37
2014-09-14syntax: tests: fix fallout from using ptr::P.Eduard Burtescu-3/+4
2014-09-14syntax: fix fallout from using ptr::P.Eduard Burtescu-59/+53
2014-09-10Implement tuple and tuple struct indexingP1start-0/+16
2014-09-08librustc: Change the syntax of subslice matching to use postfix `..`Patrick Walton-1/+1
2014-09-03Fix spelling errors and capitalization.Joseph Crail-1/+1
2014-08-30auto merge of #16419 : huonw/rust/pretty-expanded-hygiene, r=pnkfelixbors-3/+7
2014-08-30rustc: implement a pretty mode to print ident/name's ctxt & gensyms.Huon Wilson-3/+7
2014-08-29Fix formatting, update copyright datesPythoner6-1/+1
2014-08-29Add support for labeled while loops.Pythoner6-1/+5
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-92/+51
2014-08-27auto merge of #16689 : wickerwaka/rust/crate-as, r=pcwaltonbors-3/+3
2014-08-26DST coercions and DST structsNick Cameron-15/+3
2014-08-23extern crate foobar as foo;wickerwaka-3/+3
2014-08-19Fix double evaluation of read+write operandsPiotr Czarnecki-2/+8
2014-08-15auto merge of #16424 : pcwalton/rust/where-clauses, r=nikomatsakisbors-44/+95