about summary refs log tree commit diff
path: root/src/libsyntax/ext/deriving
AgeCommit message (Expand)AuthorLines
2014-11-26/*! -> //!Steve Klabnik-17/+7
2014-11-26Rote changes due to the fact that ast paths no longer carry this extraneous b...Niko Matsakis-3/+3
2014-11-19rollup merge of #19090: kmcallister/deriving-non-typeJakub Bukaj-2/+5
2014-11-18std: Stabilize std::fmtAlex Crichton-1/+1
2014-11-18deriving: error out when used on a non-typeKeegan McAllister-2/+5
2014-11-17Switch to purely namespaced enumsSteven Fackler-46/+59
2014-11-17Fix fallout from coercion removalNick Cameron-0/+1
2014-11-16Complete the removal of ty_nil, ast::LitNil, ast::TyBot and ast::TyUniqJakub Bukaj-12/+7
2014-11-15Improve examples for syntax::ext::deriving::encodableBarosl Lee-31/+40
2014-11-09auto merge of #18755 : japaric/rust/ord, r=alexcrichtonbors-10/+31
2014-11-07Update Partial/Total Eq/Ord terminologyJorge Aparicio-7/+7
2014-11-07syntax: Use UFCS in the expansion of `#[deriving(PartialOrd)]`Jorge Aparicio-4/+25
2014-11-07Update parser with `for` syntaxNiko Matsakis-2/+2
2014-11-05Use operator sugar in the expansion of `#[deriving(PartialEq)]`Jorge Aparicio-5/+31
2014-11-03syntax: Use UFCS in the expansion of `#[deriving(Clone)]`Jorge Aparicio-3/+11
2014-10-27Preserve struct field pattern shorthand in the prettyprinter.Kevin Mehall-1/+1
2014-10-24Add a lint for not using field pattern shorthandsP1start-1/+4
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-5/+7
2014-09-22auto merge of #17339 : treeman/rust/doc-things, r=alexcrichtonbors-156/+129
2014-09-18syntax: use an index in CodeMap instead of Gc for ExpnInfo.Eduard Burtescu-2/+1
2014-09-17doc: Remove "see above".Jonas Hietala-4/+3
2014-09-17doc: Backticks and spelling mistakes.Jonas Hietala-13/+13
2014-09-17doc: Cleanup.Jonas Hietala-149/+123
2014-09-16Fallout from renamingAaron Turon-10/+10
2014-09-14syntax: fix fallout from using ptr::P.Eduard Burtescu-275/+253
2014-08-31auto merge of #16788 : Manishearth/rust/raw-ptr-syntax-ty, r=huonwbors-1/+5
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-0/+6
2014-08-27Allow *-pointers in PtrTy (fixes #16781)Manish Goregaokar-1/+5
2014-08-16librustc: Forbid external crates, imports, and/or items from beingPatrick Walton-1/+1
2014-08-14librustc: Implement simple `where` clauses.Patrick Walton-4/+13
2014-08-14librustc: Stop assuming that implementations and traits only containPatrick Walton-2/+7
2014-08-08auto merge of #16285 : alexcrichton/rust/rename-share, r=huonwbors-2/+2
2014-08-07Rename `Share` to `Sync`Alex Crichton-2/+2
2014-08-07Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`,Niko Matsakis-7/+16
2014-08-05Fixes missing overflow lint for i64 #14269Falco Hirschenberger-1/+1
2014-08-01Fix misspelled comments.Joseph Crail-1/+1
2014-07-19Fixed lifetimes on syntax deriving structs, implemented CloneDzmitry Malyshau-2/+6
2014-07-18librustc: Implement unboxed closures with mutable receiversPatrick Walton-7/+20
2014-07-17librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language,Patrick Walton-1/+3
2014-07-16libsyntax: Remove `Send` from `PtrTy` in `deriving`.Patrick Walton-6/+0
2014-07-13refactor Method definition to make space for macrosJohn Clements-7/+7
2014-07-11Removed dead structures after changes to PartialOrd/Ord derivings.Felix S. Klock II-352/+29
2014-07-11`O(n*k)` code-size deriving on enums (better than previous `O(n^k)`).Felix S. Klock II-43/+455
2014-07-11Revise the `const_nonmatching` flag with more info about author's intent.Felix S. Klock II-23/+40
2014-07-09syntax: doc comments all the thingsCorey Richardson-249/+244
2014-07-08carry self ident forward through re-parsingJohn Clements-5/+9
2014-07-08Change DST syntax: type -> Sized?Nick Cameron-16/+14
2014-07-03Fix spelling errors.Joseph Crail-1/+1
2014-07-03Simplify PatIdent to contain an Ident rather than a PathJohn Clements-18/+9
2014-06-29Implement RFC#28: Add PartialOrd::partial_cmpSteven Fackler-5/+99