about summary refs log tree commit diff
path: root/src/libsyntax/fold.rs
AgeCommit message (Expand)AuthorLines
2014-10-28Use PascalCase for token variantsBrendan Zabarauskas-4/+4
2014-10-26Reduce the size of the TokenTreeBrendan Zabarauskas-11/+14
2014-10-26Use standard capitalisation for TokenTree variantsBrendan Zabarauskas-8/+8
2014-10-26Rename TokenTree variants for clarityBrendan Zabarauskas-18/+18
2014-10-26Add Span and separate open/close delims to TTDelimBrendan Zabarauskas-1/+11
2014-10-24Add a lint for not using field pattern shorthandsP1start-4/+6
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-8/+8
2014-10-16libsyntax: Remove all uses of {:?}.Luqman Aden-1/+1
2014-10-13auto merge of #17733 : jgallagher/rust/while-let, r=alexcrichtonbors-0/+6
2014-10-11Remove `virtual` structs from the languageJakub Wieczorek-3/+1
2014-10-10Teach libsyntax about `while let`John Gallagher-0/+6
2014-10-09rustc: Add `const` globals to the languageAlex Crichton-0/+3
2014-10-02syntax: ast: remove TyBox and UnBox.Eduard Burtescu-1/+0
2014-09-30Produce a better error for irrefutable `if let` patternsKevin Ballard-2/+3
2014-09-30Teach libsyntax about `if let`Kevin Ballard-0/+6
2014-09-27Translate inline assembly errors back to source locationsKeegan McAllister-2/+4
2014-09-22librustc: Parse and resolve higher-rank lifetimes in traits.Patrick Walton-3/+12
2014-09-19rollup merge of #17318 : nick29581/sliceAlex Crichton-0/+6
2014-09-18librustc: Implement the syntax in the RFC for unboxed closure sugar.Patrick Walton-7/+17
2014-09-19Implement slicing syntax.Nick Cameron-0/+6
2014-09-17librustc: Implement associated types behind a feature gate.Patrick Walton-21/+114
2014-09-16Fallout from renamingAaron Turon-11/+11
2014-09-14syntax: implement in-place folding of P<T> and Vec<T>.Eduard Burtescu-2/+9
2014-09-14syntax: tests: fix fallout from using ptr::P.Eduard Burtescu-1/+1
2014-09-14syntax: ast_map: use borrowed references into the AST.Eduard Burtescu-10/+12
2014-09-14syntax: fold: use move semantics for efficient folding.Eduard Burtescu-721/+677
2014-09-10Implement tuple and tuple struct indexingP1start-0/+13
2014-08-29Fix formatting, update copyright datesPythoner6-3/+3
2014-08-29Add support for labeled while loops.Pythoner6-5/+7
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-18/+24
2014-08-26DST coercions and DST structsNick Cameron-3/+0
2014-08-19Fix double evaluation of read+write operandsPiotr Czarnecki-2/+2
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-2/+41
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-7/+18
2014-08-14librustc: Tie up loose ends in unboxed closures.Patrick Walton-1/+4
2014-08-13librustc: Parse, but do not fully turn on, the `ref` keyword forPatrick Walton-4/+6
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-4/+25
2014-08-06AST refactoring: merge PatWild and PatWildMulti into one variant with a flag.Felix S. Klock II-2/+1
2014-07-29Refactored syntax::fold.Marvin Löbel-285/+410
2014-07-24libsyntax: Remove `~self` and `mut ~self` from the language.Patrick Walton-1/+1
2014-07-21repair macro docsJohn Clements-1/+1
2014-07-20Implement new mod import sugarJakub Wieczorek-9/+9
2014-07-18librustc: Implement unboxed closures with mutable receiversPatrick Walton-2/+15
2014-07-17librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language,Patrick Walton-3/+3
2014-07-16librustc: Implement the fully-expanded, UFCS form of explicit self.Patrick Walton-0/+1
2014-07-13update fold_method to return a smallvectorJohn Clements-10/+29
2014-07-13refactor Method definition to make space for macrosJohn Clements-8/+13
2014-07-11make walk/visit_mac opt-in onlyJohn Clements-11/+35
2014-07-11use side table to store exported macrosJohn Clements-0/+1
2014-07-08carry self ident forward through re-parsingJohn Clements-3/+3