| Age | Commit message (Expand) | Author | Lines |
| 2011-07-13 | Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases. | Graydon Hoare | -41/+41 |
| 2011-07-12 | rustc: Remove a few scattered uses of exterior vectors from typestate | Patrick Walton | -18/+6 |
| 2011-07-12 | rustc: Remove some useless std::vec imports | Patrick Walton | -2/+0 |
| 2011-07-12 | rustc: Remove some interior vectors from typestate and some useless vec-relat... | Patrick Walton | -11/+4 |
| 2011-07-12 | rustc: Simplify tritv::copy; shaves a couple of seconds off typestate. | Patrick Walton | -17/+4 |
| 2011-07-12 | Add missing files | Tim Chevalier | -111/+44 |
| 2011-07-11 | Add elipses, reorganize the macro components into their own AST node. | Paul Stansifer | -2/+2 |
| 2011-07-11 | Move macro expansion to a separate phase, change macro syntax, and add parse_... | Paul Stansifer | -5/+4 |
| 2011-07-11 | Move visit to newtype-style nominal type | Marijn Haverbeke | -6/+5 |
| 2011-07-08 | Propagate constraints through copy, move, and swap | Tim Chevalier | -133/+442 |
| 2011-07-08 | Minor refactoring | Tim Chevalier | -3/+11 |
| 2011-07-07 | rustc: Change lots of AST nodes to use interior vectors | Patrick Walton | -62/+66 |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -2/+2 |
| 2011-07-06 | rustc: Move middle::tstate::collect_locals over to interior vectors | Patrick Walton | -9/+9 |
| 2011-07-06 | rustc: Remove unused or seldom-used imports from middle::tstate::{bitvectors,... | Patrick Walton | -8/+1 |
| 2011-07-06 | rustc: Remove some unused references to std::vec from tstate::ann and tstate:... | Patrick Walton | -6/+1 |
| 2011-07-06 | rustc: Move middle::tstate::auxiliary and middle::tstate::bitvectors over to ... | Patrick Walton | -123/+131 |
| 2011-07-06 | rustc: Move tstate::annotate over to interior vectors | Patrick Walton | -12/+12 |
| 2011-07-06 | rustc: Make the various constraint-related types in middle::ty use interior v... | Patrick Walton | -4/+24 |
| 2011-07-06 | rustc: Change constraints in types to use interior vectors | Patrick Walton | -2/+2 |
| 2011-07-06 | Simplify AST for expr_anon_obj. | Lindsey Kuper | -2/+2 |
| 2011-07-06 | rustc: Revert the conversion to interior vectors due to heap corruption | Patrick Walton | -178/+162 |
| 2011-07-06 | rustc: Make AST paths use interior vectors | Patrick Walton | -2/+2 |
| 2011-07-06 | rustc: Move middle::tstate::collect_locals over to interior vectors | Patrick Walton | -9/+9 |
| 2011-07-06 | rustc: Remove unused or seldom-used imports from middle::tstate::{bitvectors,... | Patrick Walton | -8/+1 |
| 2011-07-06 | rustc: Remove some unused references to std::vec from tstate::ann and tstate:... | Patrick Walton | -6/+1 |
| 2011-07-06 | rustc: Move middle::tstate::auxiliary and middle::tstate::bitvectors over to ... | Patrick Walton | -123/+131 |
| 2011-07-06 | rustc: Move tstate::annotate over to interior vectors | Patrick Walton | -12/+12 |
| 2011-07-06 | rustc: Make the various constraint-related types in middle::ty use interior v... | Patrick Walton | -4/+24 |
| 2011-07-06 | rustc: Change constraints in types to use interior vectors | Patrick Walton | -2/+2 |
| 2011-07-06 | Remove temporary stdlib placeholders, use actual stdlib functions | Marijn Haverbeke | -23/+23 |
| 2011-07-05 | Move everything syntax-related to syntax/, break deps on rest of compiler | Marijn Haverbeke | -71/+69 |
| 2011-07-02 | Allow any string expression to be used with fail. | Josh Matthews | -4/+18 |
| 2011-06-30 | Don't warn about unused for-loop index variables | Tim Chevalier | -0/+4 |
| 2011-06-30 | Kill unused variables | Tim Chevalier | -14/+5 |
| 2011-06-30 | Warn for unused variables | Tim Chevalier | -48/+98 |
| 2011-06-29 | Re-enable tidy (it was broken) and fix various non-tidy things. | Graydon Hoare | -1/+1 |
| 2011-06-29 | Remove workaround for a compiler bug that, I guess, got fixed | Tim Chevalier | -14/+3 |
| 2011-06-28 | Remove outdated comments | Tim Chevalier | -2/+0 |
| 2011-06-28 | Implement "claim" | Tim Chevalier | -3/+3 |
| 2011-06-28 | Teach the parser and typechecker to understand port[int](). Closes #588 | Eric Holk | -2/+2 |
| 2011-06-28 | Handle lazy binops properly in typestate | Tim Chevalier | -7/+26 |
| 2011-06-27 | Tests for while loops that may invalidate constraints | Tim Chevalier | -96/+150 |
| 2011-06-27 | pure_exp should set the state, not extend it | Tim Chevalier | -2/+2 |
| 2011-06-25 | Use single-bar or to make tstate/states.rs prettier | Marijn Haverbeke | -173/+89 |
| 2011-06-25 | Allow moving out of temporary values | Marijn Haverbeke | -15/+9 |
| 2011-06-25 | Partial implementation of resources | Marijn Haverbeke | -1/+8 |
| 2011-06-25 | Remove variable name 'res' from test suite | Marijn Haverbeke | -6/+6 |
| 2011-06-24 | Invalidate constraints correctly after an assignment expression | Tim Chevalier | -374/+397 |
| 2011-06-24 | Modify the fn vistors in walk so that they can handle functions without names... | Michael Sullivan | -15/+22 |