| Age | Commit message (Expand) | Author | Lines |
| 2013-08-19 | Add externfn macro and correctly label fixed_stack_segments | Niko Matsakis | -0/+79 |
| 2013-08-16 | auto merge of #8534 : huonw/rust/tls-key-macro, r=alexcrichton | bors | -0/+11 |
| 2013-08-16 | syntax: add a local_data_key macro that creates a key for access to the TLS. | Huon Wilson | -0/+11 |
| 2013-08-15 | Switch to new <V:Visitor> visitor (rather than @Visitor). | Felix S. Klock II | -37/+37 |
| 2013-08-11 | libsyntax: Update from `@Object` to `@mut Object` as required | Niko Matsakis | -20/+20 |
| 2013-08-10 | Clean up some unused imports in tests | Erick Tryzelaar | -1/+0 |
| 2013-08-07 | Add initial support for a new formatting syntax | Alex Crichton | -1/+3 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -2/+2 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -2/+2 |
| 2013-08-02 | librustc: Introduce a new visitor type based on traits and port syntax to it. | Patrick Walton | -31/+149 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -1/+1 |
| 2013-07-31 | auto merge of #8162 : thestinger/rust/no-copy, r=brson | bors | -6/+6 |
| 2013-08-01 | make `in` and `foreach` get treated as keywords | Daniel Micay | -6/+6 |
| 2013-07-31 | auto merge of #8150 : dotdash/rust/assert_bloat, r=huonw | bors | -1/+1 |
| 2013-07-31 | Reduce code bloat from assert!() | Björn Steinbrink | -1/+1 |
| 2013-07-30 | syntax: implement foreach .. in .. { .. } via desugaring. | Graydon Hoare | -1/+155 |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -6/+6 |
| 2013-07-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -9/+10 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -2/+2 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -5/+5 |
| 2013-07-17 | Made ast::blk not use spanned<T> anymore. | Michael Woerister | -8/+7 |
| 2013-07-17 | Clean-up tests after debug!/std-macros change. | Huon Wilson | -1/+2 |
| 2013-07-16 | syntax: make a macros-injection pass; conditionally define debug! to a noop b... | Huon Wilson | -42/+59 |
| 2013-07-14 | Make TLS keys actually take up space | Alex Crichton | -2/+6 |
| 2013-07-14 | Purge the last remnants of the old TLS api | Alex Crichton | -6/+6 |
| 2013-07-13 | Rename print!()/println!() to printf!()/printfln!() | Kevin Ballard | -8/+14 |
| 2013-07-13 | Add print! and println! macros. Closes #7653. | Birunthan Mohanathas | -0/+12 |
| 2013-07-10 | Change the assert_eq message to be more verbose. | Corey Richardson | -1/+2 |
| 2013-07-07 | remove some method resolve workarounds | Daniel Micay | -1/+1 |
| 2013-07-07 | De-managed ast::Path | James Miller | -5/+5 |
| 2013-07-05 | Do not rely on newtype enum dereference | Seo Sanghyeon | -11/+11 |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -0/+2 |
| 2013-06-27 | Remove many shared pointers | Philipp Brüschweiler | -2/+2 |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -5/+1 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -3/+3 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -48/+47 |
| 2013-06-12 | Fix a test-predicated use of the visit.rs api. | Felix S. Klock II | -1/+1 |
| 2013-06-12 | Fix linebreak and whitespace issues to placate make tidy. | Felix S. Klock II | -1/+2 |
| 2013-06-12 | Visitor refactoring: Step 1, couple (Env, vt<Env>) together in a tuple. | Felix S. Klock II | -3/+3 |
| 2013-06-11 | option: remove redundant old_iter impls | Daniel Micay | -1/+3 |
| 2013-06-09 | remove unused import warnings | Huon Wilson | -10/+8 |
| 2013-06-09 | std: remove fold[lr] in favour of iterators | Huon Wilson | -1/+2 |
| 2013-06-06 | Clean up a handful of build warnings. | Michael Sullivan | -1/+1 |
| 2013-06-05 | moved TLS of sctable to ast_util, hid parameter in hygiene calls | John Clements | -44/+28 |
| 2013-06-05 | add hygiene support functions | John Clements | -4/+54 |
| 2013-06-05 | remove unused get_ident_interner's | John Clements | -3/+2 |
| 2013-06-05 | remove unused cx's | John Clements | -2/+2 |
| 2013-06-05 | token_to_ident takes argument by reference | John Clements | -4/+4 |
| 2013-06-05 | interner just uses uints, not idents with syntax context | John Clements | -7/+7 |