| Age | Commit message (Expand) | Author | Lines |
| 2014-08-13 | quote_expr macro: embed Ident using special encoding that preserves hygiene. | Felix S. Klock II | -0/+174 |
| 2014-08-12 | libsyntax: Don't strip types and lifetimes from single-segment paths in | Patrick Walton | -1/+10 |
| 2014-08-07 | Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`, | Niko Matsakis | -29/+62 |
| 2014-08-07 | auto merge of #16306 : pnkfelix/rust/fsk-ast-refactor-PatWild, r=alexcrichton | bors | -3/+3 |
| 2014-08-06 | auto merge of #16291 : nham/rust/byte_literals, r=alexcrichton | bors | -2/+2 |
| 2014-08-06 | AST refactoring: merge PatWild and PatWildMulti into one variant with a flag. | Felix S. Klock II | -3/+3 |
| 2014-08-06 | Use byte literals in libsyntax | nham | -2/+2 |
| 2014-08-05 | syntax: Handle \r\n in byte string literals | Alex Crichton | -18/+38 |
| 2014-08-05 | Fixes missing overflow lint for i64 #14269 | Falco Hirschenberger | -39/+22 |
| 2014-08-01 | Fix misspelled comments. | Joseph Crail | -1/+1 |
| 2014-07-29 | syntax: add support for quoting arms | Erick Tryzelaar | -25/+29 |
| 2014-07-25 | librustc: Disallow mutation and assignment in pattern guards, and modify | Patrick Walton | -183/+208 |
| 2014-07-24 | librustc: Make bare functions implement the `FnMut` trait. | Patrick Walton | -1/+7 |
| 2014-07-24 | libsyntax: Remove `~self` and `mut ~self` from the language. | Patrick Walton | -6/+14 |
| 2014-07-23 | Parser: Global single-segment paths should be represented as PatEnum | Jakub Wieczorek | -1/+1 |
| 2014-07-20 | auto merge of #15808 : jakub-/rust/use-mod, r=alexcrichton | bors | -6/+10 |
| 2014-07-20 | Implement new mod import sugar | Jakub Wieczorek | -6/+10 |
| 2014-07-20 | Correctly stringify! types and paths inside macros | Piotr Jawniak | -3/+5 |
| 2014-07-18 | librustc: Implement unboxed closures with mutable receivers | Patrick Walton | -56/+63 |
| 2014-07-17 | librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language, | Patrick Walton | -1/+3 |
| 2014-07-17 | auto merge of #15706 : phi-gamma/rust/master, r=huonw | bors | -1/+1 |
| 2014-07-16 | librustc: Implement the fully-expanded, UFCS form of explicit self. | Patrick Walton | -6/+24 |
| 2014-07-16 | obsolete.rs: fix typo in message | Philipp Gesang | -1/+1 |
| 2014-07-15 | Deprecate `str::from_utf8_owned` | Adolfo OchagavĂa | -1/+1 |
| 2014-07-13 | auto merge of #15646 : jbclements/rust/method-macros, r=cmr | bors | -26/+43 |
| 2014-07-13 | macro in method position parsing | John Clements | -13/+42 |
| 2014-07-13 | refactor Method definition to make space for macros | John Clements | -14/+2 |
| 2014-07-13 | auto merge of #15621 : sfackler/rust/attr-span, r=cmr | bors | -1/+1 |
| 2014-07-12 | auto merge of #15601 : jbclements/rust/disable-default-macro-behavior, r=alex... | bors | -1/+2 |
| 2014-07-11 | Fix spans for attributes | Steven Fackler | -1/+1 |
| 2014-07-11 | use side table to store exported macros | John Clements | -1/+2 |
| 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 |