about summary refs log tree commit diff
path: root/src/libsyntax/ext/deriving
AgeCommit message (Expand)AuthorLines
2013-09-01Modernized a few type names in rustc and syntaxMarvin Löbel-80/+80
2013-08-27librustc: Fix merge fallout.Patrick Walton-1/+0
2013-08-27librustc: Ensure that type parameters are in the right positions in paths.Patrick Walton-7/+20
2013-08-12Forbid pub/priv where it has no effectAlex Crichton-1/+1
2013-08-10std: Rename Iterator.transform -> .mapErick Tryzelaar-5/+5
2013-08-07auto merge of #8285 : huonw/rust/deriving+++, r=alexcrichtonbors-16/+47
2013-08-05Updated std::Option, std::Either and std::ResultMarvin Löbel-1/+1
2013-08-04syntax: make #[deriving(TotalOrd)] lazy.Huon Wilson-16/+47
2013-08-03remove obsolete `foreach` keywordDaniel Micay-20/+20
2013-08-03auto merge of #8206 : omasanori/rust/blk-to-block, r=graydonbors-3/+3
2013-08-02replace `range` with an external iteratorDaniel Micay-7/+5
2013-08-02Replace 'blk' -> 'block' in AstBuilder.OGINO Masanori-3/+3
2013-08-01migrate many `for` loops to `foreach`Daniel Micay-16/+16
2013-07-20syntax: modernise attribute handling in syntax::attr.Huon Wilson-40/+39
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-15/+25
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-1/+1
2013-07-08Correct merge errorsNiko Matsakis-4/+4
2013-07-08syntax: Patch up code that was using irrefutable patterns incorrectlyNiko Matsakis-10/+18
2013-07-07De-share ast::TyJames Miller-5/+5
2013-07-07De-manage OptVec<TyParamBounds>James Miller-8/+5
2013-07-07De-manage LifetimeJames Miller-6/+5
2013-07-07De-managed ast::PathJames Miller-6/+6
2013-06-30Remove vec::{map, mapi, zip_map} and the methods, except for .map, since thisHuon Wilson-11/+12
2013-06-29Remove mutability from unique boxes in the ASTAlex Crichton-1/+1
2013-06-29'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f...Ben Blum-4/+10
2013-06-28librustc: Change "Owned" to "Send" everywherePatrick Walton-4/+4
2013-06-27Remove many shared pointersPhilipp Brüschweiler-2/+0
2013-06-26Infer default static/Owned bounds for unbounded heap fns/traits (#7264)Ben Blum-3/+3
2013-06-25auto merge of #7365 : cmr/rust/syntax_cleanup, r=Aatchbors-35/+10
2013-06-25remove the redundant `each` method from OptVecDaniel Micay-2/+2
2013-06-25great renaming propagation: syntaxCorey Richardson-35/+10
2013-06-23Parse and typecheck (not kindcheck) bounds on trait paths.Ben Blum-3/+5
2013-06-22auto merge of #7274 : thestinger/rust/size_hint, r=huonwbors-4/+4
2013-06-23vec: remove BaseIter implementationDaniel Micay-4/+4
2013-06-22Expand the deriving(ToStr) implementationAlex Crichton-11/+64
2013-06-21vec: rm old_iter implementations, except BaseIterDaniel Micay-7/+7
2013-06-18replace #[inline(always)] with #[inline]. r=burningtree.Graydon Hoare-5/+5
2013-06-16auto merge of #7142 : alexcrichton/rust/deriving-zero, r=pcwaltonbors-0/+98
2013-06-14auto merge of #7121 : huonw/rust/rand-call, r=pnkfelixbors-3/+4
2013-06-14add IteratorUtil to the preludeDaniel Micay-3/+0
2013-06-14Implement a deriving(Zero) attributeAlex Crichton-0/+98
2013-06-14syntax: revert the uint -> u32 "fix"; make the names/comment match.Huon Wilson-4/+4
2013-06-14syntax: correct the Rand::rand call to select enum variants in #[deriving(Ran...Huon Wilson-4/+5
2013-06-13Use @str instead of @~str in libsyntax and librustc. Fixes #5048.Huon Wilson-16/+16
2013-06-09std: remove foldr and alli methods in vecHuon Wilson-5/+6
2013-06-09std: remove fold[lr] in favour of iteratorsHuon Wilson-2/+2
2013-06-08std: remove vec::each2 and vec::each2_mut in favour of iteratorsHuon Wilson-2/+3
2013-06-07syntax: correct the modifications to deriving(Ord) so that it works.Huon Wilson-30/+13
2013-06-07syntax: rewrite deriving(Ord) to not require Eq.Huon Wilson-57/+59
2013-06-07syntax: move expand_generic_deriving to be a method on TraitDefHuon Wilson-55/+37