| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 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 | |
| 2013-09-13 | Work around a compiler crash folding labeled break. #9129 | Brian Anderson | -2/+10 | |
| Servo is hitting this problem, so this is a workaround for a lack of a real solution. | ||||
| 2013-09-10 | change type of ExprLoop and ExprBreak elts from ident->name. | John Clements | -2/+5 | |
| Lots of downstream changes in librustc, should be infinitesimally faster. | ||||
| 2013-09-10 | Delay assignment of node ids until after expansion. Ensures that each AST node | Niko Matsakis | -149/+213 | |
| has a unique id. Fixes numerous bugs in macro expansion and deriving. Add two representative tests. Fixes #7971 Fixes #6304 Fixes #8367 Fixes #8754 Fixes #8852 Fixes #2543 Fixes #7654 | ||||
| 2013-09-09 | auto merge of #9005 : alexcrichton/rust/rusty-log, r=brson | bors | -6/+1 | |
| Also redefine all of the standard logging macros to use more rust code instead of custom LLVM translation code. This makes them a bit easier to understand, but also more flexibile for future types of logging. Additionally, this commit removes the LogType language item in preparation for changing how logging is performed. | ||||
| 2013-09-08 | syntax: implement labelled breaks for `for`. | Huon Wilson | -3/+4 | |
| `for` desugars to `loop` so it is trivial to just desugar to `loop` while retaining any label. | ||||
| 2013-09-06 | comment fix | John Clements | -1/+1 | |
| 2013-09-06 | capturing macros now implemented | John Clements | -0/+1 | |
| 2013-09-06 | add fold_mac field to fold.rs | John Clements | -24/+38 | |
| 2013-09-06 | rework fold so that fold_tts takes an ast_fold rather than a thunk, stop ↵ | John Clements | -6/+8 | |
| using closures in ident traversal | ||||
| 2013-09-06 | add temporarily unused ctxt field to mac_invoc_tt | John Clements | -2/+3 | |
| 2013-09-06 | fixed bug in fold's traversal of cast exprs | John Clements | -1/+1 | |
| 2013-09-06 | new test that uncovers bug in fold | John Clements | -0/+11 | |
| 2013-09-06 | remove FIXME #2888, now bug is fixed | John Clements | -3/+2 | |
| 2013-09-06 | adding test case to check marking/unmarking | John Clements | -2/+2 | |
| 2013-09-06 | refactor so tt_fold only requires an ident->ident fn | John Clements | -9/+11 | |
| 2013-09-05 | Remove the __log function for __log_level | Alex Crichton | -6/+1 | |
| Also redefine all of the standard logging macros to use more rust code instead of custom LLVM translation code. This makes them a bit easier to understand, but also more flexibile for future types of logging. Additionally, this commit removes the LogType language item in preparation for changing how logging is performed. | ||||
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -114/+114 | |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -6/+6 | |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -22/+22 | |
| 2013-08-28 | auto merge of #8718 : bblum/rust/typeof, r=pcwalton | bors | -0/+1 | |
| r? anybody | ||||
| 2013-08-27 | librustc: Add support for type parameters in the middle of paths. | Patrick Walton | -3/+5 | |
| For example, `foo::<T>::bar::<U>`. This doesn't enforce that the type parameters are in the right positions, however. | ||||
