| Age | Commit message (Expand) | Author | Lines |
| 2014-07-11 | Add scaffolding for assigning alpha-numeric codes to rustc diagnostics | Jakub Wieczorek | -2/+2 |
| 2014-07-09 | Fix all the test fallout | Corey Richardson | -9/+19 |
| 2014-07-09 | ast: make Name its own type | Corey Richardson | -80/+95 |
| 2014-07-09 | lexer: lex WS/COMMENT/SHEBANG rather than skipping | Corey Richardson | -62/+118 |
| 2014-07-09 | syntax: don't parse numeric literals in the lexer | Corey Richardson | -225/+287 |
| 2014-07-09 | syntax: don't process string/char/byte/binary lits | Corey Richardson | -76/+307 |
| 2014-07-09 | lexer: add ident_from and ident_from_to methods | Corey Richardson | -0/+14 |
| 2014-07-09 | lexer: shuffle around some functions | Corey Richardson | -99/+100 |
| 2014-07-09 | syntax: use a better Show impl for Ident | Corey Richardson | -1/+1 |
| 2014-07-09 | token: replace ast::Ident with just Ident | Corey Richardson | -18/+19 |
| 2014-07-09 | syntax: doc comments all the things | Corey Richardson | -284/+288 |
| 2014-07-08 | carry self ident forward through re-parsing | John Clements | -30/+42 |
| 2014-07-08 | remove outdated comment | John Clements | -12/+0 |
| 2014-07-08 | replace idents with names | John Clements | -0/+5 |
| 2014-07-08 | get rid of keyword idents, replace with names | John Clements | -8/+8 |
| 2014-07-08 | preserve context in parsing of `self` varref | John Clements | -9/+11 |
| 2014-07-08 | remove unused fn, make SELF_KEYWORD_NAME public | John Clements | -5/+1 |
| 2014-07-08 | change if/else to match | John Clements | -179/+197 |
| 2014-07-08 | auto merge of #15493 : brson/rust/tostr, r=pcwalton | bors | -52/+52 |
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -52/+52 |
| 2014-07-08 | Change DST syntax: type -> Sized? | Nick Cameron | -18/+47 |
| 2014-07-05 | auto merge of #15428 : phildawes/rust/master, r=huonw | bors | -2/+3 |
| 2014-07-05 | auto merge of #15427 : aochagavia/rust/parse, r=pcwalton | bors | -16/+2 |
| 2014-07-05 | auto merge of #15425 : jbclements/rust/hygiene-for-3-kinds-of-args, r=cmr | bors | -1/+1 |
| 2014-07-04 | Parser: fix PatIdent span bug | Phil Dawes | -2/+3 |
| 2014-07-04 | Removed unnecessary method in test | Adolfo OchagavĂa | -16/+2 |
| 2014-07-04 | new_mark -> apply_mark, new_rename -> apply_rename | John Clements | -1/+1 |
| 2014-07-04 | librustc: Remove the `&LIFETIME EXPR` production from the language. | Patrick Walton | -1/+0 |
| 2014-07-03 | Fix ICE with nested macro_rules!-style macros | Kevin Ballard | -2/+2 |
| 2014-07-03 | Simplify PatIdent to contain an Ident rather than a Path | John Clements | -44/+32 |
| 2014-07-01 | rustc: Remove `&str` indexing from the language. | Brian Anderson | -2/+2 |
| 2014-06-28 | auto merge of #15208 : alexcrichton/rust/snapshots, r=pcwalton | bors | -1/+5 |
| 2014-06-28 | auto merge of #15233 : jbclements/rust/match-var-hygiene-etc, r=cmr | bors | -0/+1 |
| 2014-06-27 | comments only | John Clements | -0/+1 |
| 2014-06-26 | Remove unnecessary to_string calls | Piotr Jawniak | -1/+1 |
| 2014-06-25 | Register new snapshots | Alex Crichton | -1/+5 |
| 2014-06-25 | auto merge of #15160 : alexcrichton/rust/remove-f128, r=brson | bors | -8/+1 |
| 2014-06-24 | Make parse_expr_res public | Keegan McAllister | -1/+1 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -4/+2 |
| 2014-06-24 | Remove the quad_precision_float feature gate | Alex Crichton | -8/+1 |
| 2014-06-24 | auto merge of #14952 : alexcrichton/rust/const-unsafe-pointers, r=brson | bors | -4/+17 |
| 2014-06-23 | libsyntax: Disallow struct literals after `if`, `while`, `match`, and | Patrick Walton | -14/+16 |
| 2014-06-22 | libsyntax: don't allow enum structs with no fields | Benjamin Herr | -0/+5 |
| 2014-06-21 | auto merge of #15062 : pcwalton/rust/trailing-plus, r=brson | bors | -0/+6 |
| 2014-06-20 | libsyntax: Stop parsing `+` with no bounds after it. | Patrick Walton | -0/+6 |
| 2014-06-20 | syntax: Parse GT tokens from `>=` and `>>=` | Alex Crichton | -1/+13 |
| 2014-06-18 | Handle CRLF properly in the lexer | Kevin Ballard | -23/+140 |
| 2014-06-18 | Don't require mutable StringReader to emit lexer errors | Kevin Ballard | -42/+52 |
| 2014-06-18 | Fix spans for doc comments | Kevin Ballard | -3/+3 |
| 2014-06-18 | auto merge of #14880 : SimonSapin/rust/byte-literals, r=alexcrichton | bors | -83/+213 |