about summary refs log tree commit diff
path: root/src/libsyntax/print
AgeCommit message (Expand)AuthorLines
2014-11-19Merge the ExprFnBlock and ExprUnboxedClosure into one ExprClosure with an opt...Niko Matsakis-43/+4
2014-11-20Parse and store suffixes on literals.Huon Wilson-12/+22
2014-11-19Refactor QPath to take an ast::TraitRefNiko Matsakis-2/+2
2014-11-19Switch to an independent enum for `Lit*` subtokens.Huon Wilson-12/+12
2014-11-18Convert TyPolyTraitRef to accept arbitary bounds, so that things likeNiko Matsakis-2/+2
2014-11-18implement Writer for Vec<u8>Daniel Micay-5/+5
2014-11-18rollup merge of #18911: canndrew/slice_shift_charJakub Bukaj-1/+1
2014-11-17Switch to purely namespaced enumsSteven Fackler-0/+6
2014-11-17change return type of slice_shift_charAndrew Cann-1/+1
2014-11-16Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniqJakub Bukaj-47/+55
2014-11-07Purge the old `once_fns`, which are not coming backNiko Matsakis-9/+0
2014-11-07Update parser with `for` syntaxNiko Matsakis-13/+18
2014-11-07auto merge of #17830 : pczarn/rust/interp_tt, r=pnkfelixbors-16/+13
2014-11-07Add `ast::SequenceRepetition`Piotr Czarnecki-4/+4
2014-11-06Remove the unboxed closure `|:|` notation from types and trait references com...Niko Matsakis-50/+6
2014-11-06Support parenthesized paths `Foo(A,B) -> C` that expand to `Foo<(A,B),C>`. Th...Niko Matsakis-11/+45
2014-11-05Remove `Matcher`sPiotr Czarnecki-1/+0
2014-11-05Use `TokenTree`s in lhs of macrosPiotr Czarnecki-12/+10
2014-11-04libsyntax: Forbid escapes in the inclusive range `\x80`-`\xff` inPatrick Walton-3/+8
2014-11-03rollup merge of #18506 : nikomatsakis/assoc-type-boundsAlex Crichton-19/+25
2014-11-03Restructure AST so that the associated type definition carriesNiko Matsakis-19/+25
2014-11-03Clean-up transmutes in libsyntaxAriel Ben-Yehuda-8/+5
2014-10-30rollup merge of #18445 : alexcrichton/index-mutAlex Crichton-15/+14
2014-10-30rollup merge of #18430 : bjz/tokenAlex Crichton-10/+9
2014-10-30rollup merge of #18398 : aturon/lint-conventions-2Alex Crichton-2/+2
2014-10-30collections: Enable IndexMut for some collectionsAlex Crichton-15/+14
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