| Age | Commit message (Expand) | Author | Lines |
| 2012-03-02 | Move src/comp to src/rustc | Graydon Hoare | -121/+0 |
| 2012-02-24 | Encode/decode AST into metadata, re-instantiate inlined items | Niko Matsakis | -0/+1 |
| 2012-02-09 | Remove some pointless imports | Marijn Haverbeke | -1/+0 |
| 2012-01-18 | Remove '.' after nullary tags in patterns | Tim Chevalier | -2/+2 |
| 2012-01-10 | replace lambda with fn@ | Niko Matsakis | -4/+3 |
| 2012-01-09 | Remove proto_sugar and 'lambda' as keyword, commit to fn@. | Graydon Hoare | -2/+2 |
| 2012-01-06 | Eliminate a use of map::get in freevars | Tim Chevalier | -14/+21 |
| 2011-12-29 | split proto from fn_decl, as not all fn_decls know the proto. | Niko Matsakis | -5/+4 |
| 2011-12-23 | Go back to a single visit_fn function in visit.rs | Marijn Haverbeke | -4/+4 |
| 2011-12-22 | Unify some data structures in syntax::ast that were doing the same thing | Marijn Haverbeke | -2/+2 |
| 2011-12-21 | Make { || ... } sugar for any type of closure, inferred | Niko Matsakis | -16/+16 |
| 2011-12-19 | when collecting free vars, track the span where it is used too | Niko Matsakis | -2/+7 |
| 2011-12-14 | push changes through to get things compiling, if not running. | Niko Matsakis | -3/+1 |
| 2011-12-14 | first attempt, not happy with it | Niko Matsakis | -1/+1 |
| 2011-12-13 | Copy first batch of material from libstd to libcore. | Graydon Hoare | -3/+3 |
| 2011-11-17 | remove compile-command from local variable blocks | Niko Matsakis | -1/+0 |
| 2011-11-10 | Cleanup unused imports | Haitao Li | -2/+1 |
| 2011-10-21 | Drop support for iter, put, and for-each | Marijn Haverbeke | -18/+1 |
| 2011-10-20 | Merge ast::proto_shared and ast::proto_closure | Brian Anderson | -1/+2 |
| 2011-10-20 | Make fn denote a bare function. Convert fn to fn@ as needed | Brian Anderson | -1/+1 |
| 2011-10-07 | Parse and typecheck by-value and by-ref arg specs | Marijn Haverbeke | -2/+2 |
| 2011-09-12 | Factor imports mindlessly. | Graydon Hoare | -7/+2 |
| 2011-09-12 | Properly implement copy expressions | Marijn Haverbeke | -1/+1 |
| 2011-09-12 | Reformat for new mode syntax, step 1 | Marijn Haverbeke | -14/+12 |
| 2011-09-02 | Reformat. Issue #855 | Brian Anderson | -64/+62 |
| 2011-09-01 | Rename std::istr to std::str. Issue #855 | Brian Anderson | -1/+1 |
| 2011-09-01 | Remove various istr conversions. Issue #855 | Brian Anderson | -2/+2 |
| 2011-09-01 | Make resolve recognize upvars | Marijn Haverbeke | -117/+67 |
| 2011-09-01 | Store arg mode and objfield mutability in their def | Marijn Haverbeke | -1/+1 |
| 2011-08-27 | Convert rustc::driver::session to istrs. Issue #855 | Brian Anderson | -1/+1 |
| 2011-08-27 | Convert std::int to istrs. Issue #855 | Brian Anderson | -1/+5 |
| 2011-08-22 | Move functions from syntax::ast to syntax::ast_util | Brian Anderson | -4/+5 |
| 2011-08-20 | Reformat | Brian Anderson | -61/+66 |
| 2011-08-18 | Remove or _-prefix all unused function arguments | Marijn Haverbeke | -2/+2 |
| 2011-08-16 | Port the compiler to the typaram foo<T> syntax. | Erick Tryzelaar | -6/+6 |
| 2011-08-16 | Rename std::ivec to std::vec | Brian Anderson | -1/+0 |
| 2011-08-15 | The wonky for...in... whitespace was bothering me. Sorry! | Lindsey Kuper | -3/+3 |
| 2011-08-09 | Port the compiler to the ivec type [T] syntax. | Erick Tryzelaar | -5/+5 |
| 2011-08-05 | Revert "rustc: Introduce the concept of inline to the AST" | Patrick Walton | -6/+5 |
| 2011-08-05 | rustc: Introduce the concept of inline to the AST | Patrick Walton | -5/+6 |
| 2011-08-04 | Prohibit assignment to upvars in lambdas. Closes #805. | Michael Sullivan | -4/+4 |
| 2011-08-04 | Use lambdas in the freevars pass. | Michael Sullivan | -64/+50 |
| 2011-08-03 | Make ast::pat_bindings an iterator | Marijn Haverbeke | -5/+2 |
| 2011-08-02 | Track the node_id of the function in trans_common::fn_ctxt. | Michael Sullivan | -1/+1 |
| 2011-08-01 | Partially implement destructuring locals | Marijn Haverbeke | -2/+8 |
| 2011-07-28 | Change the way freevars stores its information again. | Michael Sullivan | -12/+18 |
| 2011-07-27 | Fix damage done by the pretty-printer | Marijn Haverbeke | -6/+6 |
| 2011-07-27 | Reformat for new syntax | Marijn Haverbeke | -95/+86 |
| 2011-07-26 | Fix the freevars pass to actually work on top of visit. | Michael Sullivan | -2/+9 |
| 2011-07-26 | Convert all code that uses walk.rs in the straightforward way to simple_visit | Marijn Haverbeke | -23/+21 |