about summary refs log tree commit diff
path: root/src/libsyntax/ext/deriving
AgeCommit message (Expand)AuthorLines
2014-02-19librustc: Remove unique vector patterns from the language.Patrick Walton-43/+45
2014-02-14Fix all code examplesAlex Crichton-12/+20
2014-02-14auto merge of #12234 : sfackler/rust/restructure-item-decorator, r=huonwbors-65/+67
2014-02-14Refactored ast_map and friends, mainly to have Paths without storing them.Eduard Burtescu-22/+18
2014-02-13Tweak ItemDecorator APISteven Fackler-65/+67
2014-02-11libsyntax -- fix unsafe sharing in closuresNiko Matsakis-9/+12
2014-02-11to_str -- update to contain scope of closureNiko Matsakis-20/+21
2014-02-08Update deriving to pass around the `cx` linearlyNiko Matsakis-132/+157
2014-02-08Fixed error starting with uppercasemr.Shu-16/+16
2014-02-08Implement `#[deriving(Show)]`.Huon Wilson-0/+140
2014-02-08syntax: convert deriving to take &mut ExtCtxt.Huon Wilson-62/+62
2014-02-08syntax: remove some dead code.Huon Wilson-15/+1
2014-02-07Removed @self and @Trait.Eduard Burtescu-7/+2
2014-02-05pull extra::{serialize, ebml} into a separate libserialize crateJeff Olson-8/+7
2014-02-02librustc: De-`@str` `NameAndSpan`Patrick Walton-1/+1
2014-02-02librustc: Fix merge fallout.Patrick Walton-4/+7
2014-02-02libsyntax: De-`@str` literal strings in the ASTPatrick Walton-41/+100
2014-02-02libsyntax: Introduce an `InternedString` type to reduce `@str` in thePatrick Walton-6/+14
2014-01-31Fix minor doc typosVirgile Andreani-2/+2
2014-01-30Implement default type parameters in generics.Eduard Burtescu-2/+2
2014-01-27auto merge of #11826 : huonw/rust/7621-deriving-errors, r=alexcrichtonbors-9/+7
2014-01-28syntax: make deriving have slightly less cryptic error messages.Huon Wilson-9/+7
2014-01-27Demote self to an (almost) regular argument and remove the env param.Eduard Burtescu-4/+8
2014-01-27syntax: improve the spans of some #[deriving] traits.Huon Wilson-137/+138
2014-01-26syntax: Fix a missing closing code tag in docs.Huon Wilson-0/+1
2014-01-21[std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behaviorSimon Sapin-2/+2
2014-01-21[std::vec] Rename .last_opt() to .last(), drop the old .last() behaviorSimon Sapin-1/+1
2014-01-18syntax::ext: replace span_fatal with span_err in many places.Huon Wilson-5/+9
2014-01-16Load macros from external modulesSteven Fackler-1/+1
2014-01-12Removed remnants of `@mut` and `~mut` from comments and the type system.Eduard Burtescu-1/+1
2014-01-09libsyntax: Renamed types, traits and enum variants to CamelCase.Eduard Burtescu-107/+105
2014-01-08auto merge of #11370 : alexcrichton/rust/issue-10465, r=pwaltonbors-1/+0
2014-01-07Fix remaining cases of leaking importsAlex Crichton-1/+0
2014-01-07'borrowed pointer' -> 'reference'Brian Anderson-1/+1
2014-01-03librustc: Remove `@mut` support from the parserPatrick Walton-4/+4
2013-12-28Stop using @ExtCtxtSteven Fackler-55/+55
2013-12-11Make 'self lifetime illegal.Erik Price-45/+45
2013-12-07syntax::deriving: indicate from which trait type errors (etc) ariseHuon Wilson-4/+22
2013-12-07syntax::deriving: add the cx and span to the TraitDef to reduce duplication.Huon Wilson-226/+251
2013-12-01Box Block, fn_decl, variant and Ty in the AST, as they were inflating critica...Eduard Burtescu-19/+15
2013-11-28Register new snapshotsAlex Crichton-14/+14
2013-11-26libsyntax: Remove all non-`proc` `do` syntax.Patrick Walton-74/+80
2013-11-26librustc: Remove remaining uses of `&fn()` in favor of `||`.Patrick Walton-16/+17
2013-11-19libsyntax: Change all uses of `&fn` to `||`.Patrick Walton-16/+24
2013-11-19Mark some derived methods as #[inline].Huon Wilson-1/+27
2013-11-08Generalize AST and ty::Generics to accept multiple lifetimes.Niko Matsakis-14/+15
2013-11-08syntax::ext: Make type errors in deriving point to the field itself.Huon Wilson-312/+327
2013-10-25libsyntax/librustc: Allow mut qualifier in patterns.Luqman Aden-2/+2
2013-10-22libsyntax/librustc: Allow specifying mut on ~self.Luqman Aden-1/+1
2013-10-22libsyntax/librustc: Allow specifying mut on by-value self.Luqman Aden-1/+1