| Age | Commit message (Expand) | Author | Lines |
| 2020-08-02 | Formatting: don't mix mod and use | Aleksey Kladov | -6/+5 |
| 2020-08-02 | Introduce NonterminalKind | Aleksey Kladov | -2/+4 |
| 2020-07-15 | Remove lots of `Symbol::as_str()` calls. | Nicholas Nethercote | -2/+2 |
| 2020-07-06 | Rollup merge of #73953 - JohnTitor:audit-hidden-sugg, r=estebank | Manish Goregaokar | -1/+1 |
| 2020-07-02 | Audit uses of `span_suggestion_short` | Yuki Okushi | -1/+1 |
| 2020-07-01 | Remove `token::FlattenGroup` | Vadim Petrochenkov | -3/+3 |
| 2020-06-26 | proc_macro: Stop flattening groups with dummy spans | Vadim Petrochenkov | -3/+3 |
| 2020-06-15 | Always capture tokens for `macro_rules!` arguments | Aaron Hill | -1/+1 |
| 2020-06-09 | Fix more clippy warnings | Matthias Krüger | -3/+3 |
| 2020-05-27 | improve diagnostics suggestion for missing `@` in slice id binding to rest p... | Chris Simpkins | -0/+20 |
| 2020-05-22 | Rewrite `Parser::collect_tokens` | Aaron Hill | -73/+113 |
| 2020-05-08 | Remove ast::{Ident, Name} reexports. | Camille GILLOT | -4/+4 |
| 2020-04-24 | Avoid unused Option::map results | Josh Stone | -2/+2 |
| 2020-03-21 | parse: nix unused `root_module_name`. | Mazdak Farrokhzad | -5/+0 |
| 2020-03-18 | {rustc_parse::parser -> rustc_expand}::module | Mazdak Farrokhzad | -2/+0 |
| 2020-03-18 | outline modules: parse -> expand. | Mazdak Farrokhzad | -32/+1 |
| 2020-03-18 | expand: use push_directory | Mazdak Farrokhzad | -1/+1 |
| 2020-03-09 | rustc_parse: Remove `Parser::normalized(_prev)_token` | Vadim Petrochenkov | -37/+5 |
| 2020-03-09 | rustc_ast: Introduce `Token::uninterpolated_span` | Vadim Petrochenkov | -3/+3 |
| 2020-03-09 | rustc_parse: Use `Token::ident` where possible | Vadim Petrochenkov | -4/+4 |
| 2020-03-01 | Rollup merge of #69579 - petrochenkov:noprevspan, r=Centril | Yuki Okushi | -19/+21 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -7/+9 |
| 2020-02-29 | parser: Remove `Parser::prev_span` | Vadim Petrochenkov | -8/+10 |
| 2020-02-29 | parser: `prev_span` -> `prev_token.span` | Vadim Petrochenkov | -11/+11 |
| 2020-02-28 | Rollup merge of #69384 - petrochenkov:nounnorm, r=Centril | Mazdak Farrokhzad | -25/+23 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -4/+3 |
| 2020-02-24 | parser: `token` -> `normalized_token`, `nonnormalized_token` -> `token` | Vadim Petrochenkov | -25/+23 |
| 2020-02-22 | parser: Cleanup `Parser::bump_with` and its uses | Vadim Petrochenkov | -127/+51 |
| 2020-02-17 | parser: Remove `Option`s from unnormalized tokens | Vadim Petrochenkov | -36/+19 |
| 2020-02-17 | parser: Set previous and unnormalized tokens in couple more places | Vadim Petrochenkov | -4/+4 |
| 2020-02-17 | parser: Do not call `bump` recursively | Vadim Petrochenkov | -43/+32 |
| 2020-02-13 | parser: misc small item related improvements & cleanups. | Mazdak Farrokhzad | -0/+5 |
| 2020-02-13 | parser: move `ban_async_in_2015` to `fn` parsing & improve it. | Mazdak Farrokhzad | -13/+0 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -4/+5 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -3/+9 |
| 2020-02-13 | Rollup merge of #68848 - nnethercote:hasten-macro-parsing, r=petrochenkov | Dylan DPC | -5/+4 |
| 2020-02-12 | Rollup merge of #69034 - petrochenkov:notokind, r=Centril | Dylan DPC | -32/+6 |
| 2020-02-11 | Run RustFmt | jumbatm | -1/+3 |
| 2020-02-11 | Invert control in struct_lint_level. | jumbatm | -1/+1 |
| 2020-02-10 | parser: Remove `Parser::prev_token_kind` | Vadim Petrochenkov | -32/+6 |
| 2020-02-10 | parser: Keep current and previous tokens precisely | Vadim Petrochenkov | -23/+51 |
| 2020-02-06 | Remove the `Cow` from `Directory`. | Nicholas Nethercote | -5/+4 |
| 2020-02-04 | stop using BytePos for computing spans in librustc_parse/parser/mod.rs | David Renshaw | -17/+22 |
| 2020-02-03 | Auto merge of #68735 - JohnTitor:fix-ice-0202, r=estebank | bors | -2/+2 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -1/+1 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -1/+1 |
| 2020-02-02 | Use `next_point` to avoid ICE | Yuki Okushi | -2/+2 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -2/+0 |
| 2020-01-11 | restore some rustc_parse visibilities | Caleb Cartwright | -4/+9 |
| 2020-01-10 | Change `next_point` when `shrink_to_hi` is more appropriate | Esteban Küber | -1/+1 |