| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-02-14 | Removed the obsolete ast::CallSugar (previously used by `do`). | Eduard Burtescu | -7/+4 | |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -13/+22 | |
| 2014-02-13 | Replace `crate` usage with `krate` | Flavio Percoco | -2/+2 | |
| This patch replaces all `crate` usage with `krate` before introducing the new keyword. This ensures that after introducing the keyword, there won't be any compilation errors. krate might not be the most expressive substitution for crate but it's a very close abbreviation for it. `module` was already used in several places already. | ||||
| 2014-02-11 | syntax/fold -- remove conflicting (and rather pointless) closures | Niko Matsakis | -18/+7 | |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -1/+1 | |
| 2014-02-03 | syntax: Remove usage of io_error in tests | Alex Crichton | -2/+4 | |
| 2014-02-02 | libsyntax: Fix tests. | Patrick Walton | -3/+5 | |
| 2014-02-02 | librustc: Fix merge fallout. | Patrick Walton | -5/+3 | |
| 2014-02-02 | libsyntax: Remove all `@str` from the AST | Patrick Walton | -2/+6 | |
| 2014-02-02 | libsyntax: De-`@str` literal strings in the AST | Patrick Walton | -1/+3 | |
| 2014-02-02 | libsyntax: Introduce an `InternedString` type to reduce `@str` in the | Patrick Walton | -7/+4 | |
| compiler and use it for attributes | ||||
| 2014-01-30 | Implement default type parameters in generics. | Eduard Burtescu | -0/+1 | |
| 2014-01-29 | Removing support for the do syntax from libsyntax and librustc. | Scott Lawrence | -1/+0 | |
| Fixes #10815. | ||||
| 2014-01-27 | Demote self to an (almost) regular argument and remove the env param. | Eduard Burtescu | -7/+2 | |
| Fixes #10667 and closes #10259. | ||||
| 2014-01-16 | Load macros from external modules | Steven Fackler | -14/+23 | |
| 2014-01-14 | auto merge of #11485 : eddyb/rust/sweep-old-rust, r=nikomatsakis | bors | -1/+1 | |
| 2014-01-13 | librustc: Remove `@` pointer patterns from the language | Patrick Walton | -1/+0 | |
| 2014-01-12 | Removed remnants of `@mut` and `~mut` from comments and the type system. | Eduard Burtescu | -1/+1 | |
| 2014-01-09 | auto merge of #11055 : pcwalton/rust/placement-box, r=pcwalton | bors | -0/+3 | |
| r? @nikomatsakis | ||||
| 2014-01-09 | librustc: Implement placement `box` for GC and unique pointers. | Patrick Walton | -0/+3 | |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -163/+153 | |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -129/+134 | |
| 2014-01-03 | libsyntax: Fix tests. | Patrick Walton | -1/+1 | |
| 2014-01-03 | librustc: Remove `@mut` support from the parser | Patrick Walton | -1/+1 | |
| 2014-01-01 | Remove `extern mod foo (name="bar")` syntax, closes #9543 | Florian Hahn | -2/+0 | |
| 2013-12-29 | Make ast_fold take &mut self | Steven Fackler | -64/+64 | |
| 2013-12-17 | Remove obsolete mutability from ast::Ty | Seo Sanghyeon | -4/+4 | |
| 2013-12-08 | Remove dead codes | Kiet Tran | -22/+0 | |
| 2013-12-01 | auto merge of #10750 : Blei/rust/no-at-struct-field, r=alexcrichton | bors | -6/+6 | |
| 2013-12-01 | ast: Remove one `@` and fix the fallout | Philipp Brüschweiler | -6/+6 | |
| 2013-12-01 | Box Block, fn_decl, variant and Ty in the AST, as they were inflating ↵ | Eduard Burtescu | -47/+47 | |
| critical enum sizes. | ||||
| 2013-11-27 | Freeze the AST by removing a couple of unused @mut ~[T] from token_tree. | Eduard Burtescu | -3/+3 | |
| 2013-11-26 | Support multiple item macros | Steven Fackler | -31/+22 | |
| Closes #4375 | ||||
| 2013-11-26 | libsyntax: Remove all non-`proc` `do` syntax. | Patrick Walton | -12/+12 | |
| 2013-11-21 | Remove ty_mac | Seo Sanghyeon | -1/+0 | |
| 2013-11-19 | libsyntax: Change all uses of `&fn` to `||`. | Patrick Walton | -1/+1 | |
| 2013-11-18 | Use '..' as slice wildcard in vectors | Brian Anderson | -0/+1 | |
| 2013-11-08 | Generalize AST and ty::Generics to accept multiple lifetimes. | Niko Matsakis | -5/+30 | |
| 2013-11-04 | libsyntax/librustc: Allow calling variadic foreign functions. | Luqman Aden | -0/+2 | |
| 2013-10-29 | librustc: Implement the `proc` type as sugar for `~once fn` and `proc` | Patrick Walton | -0/+3 | |
| notation for closures, and disable the feature gate for `once fn` if used with the `~` sigil. | ||||
| 2013-10-28 | Field identifiers now include specific spans (Closes #8263). | Joshua Yanovski | -3/+4 | |
| 2013-10-25 | libsyntax/librustc: Allow mut qualifier in patterns. | Luqman Aden | -2/+0 | |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -1/+1 | |
| Who doesn't like a massive renaming? | ||||
| 2013-10-10 | Remove named extern blocks from the AST | Alex Crichton | -1/+0 | |
| There's currently a fair amount of code which is being ignored on unnamed blocks (which are the default now), and I opted to leave it commented out for now. I intend on very soon revisiting on how we perform linking with extern crates in an effort to support static linking. | ||||
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -18/+18 | |
| 2013-09-30 | syntax: Remove usage of fmt! | Alex Crichton | -1/+1 | |
| 2013-09-29 | Remove all usage of @ast::Crate | Alex Crichton | -2/+2 | |
| 2013-09-23 | test: Fix rustdoc and tests. | Patrick Walton | -13/+2 | |
| 2013-09-23 | libsyntax: Introduce routines and remove all `@fn`s from libsyntax save the ↵ | Patrick Walton | -26/+10 | |
| old visitor | ||||
| 2013-09-23 | librustc: Change fold to use traits instead of `@fn`. | Patrick Walton | -805/+635 | |
