| Age | Commit message (Expand) | Author | Lines |
| 2016-08-07 | Make metavariables hygienic. | Jeffrey Seyfried | -5/+5 |
| 2016-06-26 | Rollup merge of #34385 - cgswords:tstream, r=nrc | Jeffrey Seyfried | -4/+5 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -6/+6 |
| 2016-06-21 | Refactored tokentrees into their own files in preparation for tokenstreams. M... | cgswords | -4/+5 |
| 2016-05-24 | Make sure that macros that didn't pass LHS checking are not expanded. | Leo Testard | -8/+3 |
| 2016-04-24 | syntax: Check paths in visibilities for type parameters | Vadim Petrochenkov | -2/+2 |
| 2016-04-24 | syntax: Get rid of token::IdentStyle | Vadim Petrochenkov | -6/+6 |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -2/+2 |
| 2016-02-11 | Remove some unnecessary indirection from AST structures | Vadim Petrochenkov | -1/+1 |
| 2016-02-11 | [breaking-change] don't glob export ast::KleeneOp variants | Oliver 'ker' Schneider | -1/+1 |
| 2015-12-31 | Cut out a bunch of Result and panictry! boilerplate from libsyntax. | Nick Cameron | -2/+2 |
| 2015-12-30 | use structured errors | Nick Cameron | -11/+21 |
| 2015-12-17 | Remove unused imports | Jeffrey Seyfried | -1/+1 |
| 2015-12-15 | Generated code spans now point to callsite parameters (where applicable) | Daniel Campbell | -3/+6 |
| 2015-11-25 | Fix "Cannot fill in a NT" ICE | Jonas Schievink | -12/+23 |
| 2015-11-17 | Fix match_ref_pats flagged by Clippy | Seo Sanghyeon | -17/+17 |
| 2015-11-10 | Rename _nopanic methods to remove the suffix. | Eli Friedman | -5/+5 |
| 2015-11-06 | remove `Tt` prefix from TokenType variants | Oliver Schneider | -18/+17 |
| 2015-10-27 | Don't panic for fatal errors in attribute parsing. | Eli Friedman | -1/+1 |
| 2015-10-27 | Delete unnecessary ParserAttr trait. | Eli Friedman | -1/+0 |
| 2015-10-27 | Don't use panicking helpers in Parser. | Eli Friedman | -5/+5 |
| 2015-10-08 | typos: fix a grabbag of typos all over the place | Cristi Cobzarenco | -1/+1 |
| 2015-09-24 | Cleanup interfaces of Name, SyntaxContext and Ident | Vadim Petrochenkov | -5/+5 |
| 2015-08-15 | Slightly improved macro diagnostics + Indentation fixes | Jonas Schievink | -46/+50 |
| 2015-08-07 | improve span of erroneous empty macro invocation | Tim Neumann | -16/+0 |
| 2015-07-28 | remove `get_ident` and `get_name`, make `as_str` sound | Oliver Schneider | -8/+4 |
| 2015-07-10 | Change some instances of .connect() to .join() | Wesley Wiser | -1/+1 |
| 2015-04-21 | syntax: remove #![feature(box_syntax, box_patterns)] | Erick Tryzelaar | -6/+6 |
| 2015-04-21 | Model lexer: Fix remaining issues | Piotr Czarnecki | -2/+0 |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -4/+4 |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-05 | Work towards a non-panicing parser (libsyntax) | Phil Dawes | -15/+15 |
| 2015-03-13 | syntax: use lookahead to distinguish inner and outer attributes, instead of p... | Eduard Burtescu | -2/+5 |
| 2015-03-05 | Auto merge of #22061 - pczarn:quote_matcher_and_attr, r=kmcallister | bors | -3/+6 |
| 2015-03-04 | Add quasiquote for matchers and attributes | Piotr Czarnecki | -3/+6 |
| 2015-03-03 | Switched to Box::new in many places. | Felix S. Klock II | -1/+1 |
| 2015-02-20 | Remove remaining uses of `[]`. This time I tried to use deref coercions where... | Niko Matsakis | -1/+1 |
| 2015-02-18 | Round 3 test fixes and conflicts | Alex Crichton | -3/+3 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -6/+6 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -6/+6 |
| 2015-02-18 | rollup merge of #22497: nikomatsakis/suffixes | Alex Crichton | -1/+1 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -1/+1 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -1/+1 |
| 2015-02-06 | Update to last version, remove "[]" as much as possible | GuillaumeGomez | -2/+2 |
| 2015-02-06 | Libsyntax has been updated | GuillaumeGomez | -3/+2 |
| 2015-02-06 | Replace the get method by the deref one on InternedString | GuillaumeGomez | -3/+4 |
| 2015-02-02 | rollup merge of #21830: japaric/for-cleanup | Alex Crichton | -4/+4 |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -3/+3 |
| 2015-02-02 | Omit integer suffix when unnecessary | Alfie John | -17/+17 |