| Age | Commit message (Expand) | Author | Lines |
| 2020-02-14 | Fix a typo in a variable name. | Nicholas Nethercote | -3/+4 |
| 2020-02-14 | Avoid `base_parser`, it's not needed. | Nicholas Nethercote | -14/+11 |
| 2020-02-13 | Rollup merge of #69057 - Centril:clean-expand, r=petrochenkov | Dylan DPC | -59/+60 |
| 2020-02-13 | parser: unify item list parsing. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-13 | macro_legacy_warnings -> error | Mazdak Farrokhzad | -8/+5 |
| 2020-02-13 | expand: simplify flat_map_item wrt. inline module detection | Mazdak Farrokhzad | -7/+4 |
| 2020-02-13 | expand: simplify flat_map_item | Mazdak Farrokhzad | -5/+1 |
| 2020-02-13 | expand: simplify classify_* | Mazdak Farrokhzad | -8/+5 |
| 2020-02-13 | expand: extract error_wrong_fragment_kind | Mazdak Farrokhzad | -7/+13 |
| 2020-02-13 | expand: extract error_recursion_limit_reached | Mazdak Farrokhzad | -11/+16 |
| 2020-02-13 | expand: extract error_derive_forbidden_on_non_adt | Mazdak Farrokhzad | -22/+22 |
| 2020-02-13 | IsAsync -> enum Async { Yes { span: Span, .. }, No } | Mazdak Farrokhzad | -2/+2 |
| 2020-02-13 | Rollup merge of #68848 - nnethercote:hasten-macro-parsing, r=petrochenkov | Dylan DPC | -51/+62 |
| 2020-02-11 | Run RustFmt | jumbatm | -1/+5 |
| 2020-02-11 | Invert control in struct_lint_level. | jumbatm | -1/+1 |
| 2020-02-06 | Rollup merge of #68788 - Centril:unified-fn-bodies, r=petrochenkov | Dylan DPC | -19/+25 |
| 2020-02-06 | Change condition ordering in `parse_tt`. | Nicholas Nethercote | -6/+6 |
| 2020-02-06 | Remove the `Cow` from `Directory`. | Nicholas Nethercote | -2/+2 |
| 2020-02-06 | Avoid instantiating many `Parser` structs in `generic_extension`. | Nicholas Nethercote | -45/+56 |
| 2020-02-05 | Rollup merge of #68840 - Centril:rec-lim-curr-crate, r=estebank | Dylan DPC | -2/+2 |
| 2020-02-05 | `#![recursion_limit = "X"]`: note current crate name. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -19/+25 |
| 2020-02-04 | Rollup merge of #68758 - daboross:fix-59191, r=petrochenkov | Dylan DPC | -1/+11 |
| 2020-02-02 | Change expansion error to be non-fatal | David | -1/+3 |
| 2020-02-01 | Fix 59191 | David Ross | -1/+9 |
| 2020-02-01 | fix fallout in tests | Mazdak Farrokhzad | -5/+5 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -5/+6 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -6/+6 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -3/+4 |
| 2020-02-01 | syntax: simplify HasAttrs code | Mazdak Farrokhzad | -1/+1 |
| 2020-02-01 | syntax: move GLOBALS to attr module | Mazdak Farrokhzad | -1/+1 |
| 2020-01-30 | Use `P` for `NtMeta`. | Nicholas Nethercote | -1/+2 |
| 2020-01-30 | Use `P` for `NtTraitItem`, `NtImplItem`, and `NtForeignItem`. | Nicholas Nethercote | -71/+86 |
| 2020-01-26 | rustc_span: move pretty syntax from macro_backtrace to ExpnKind::descr. | Eduard-Mihai Burtescu | -4/+1 |
| 2020-01-20 | Revert "Add a `constness` field to `ast::TraitRef`" | Dylan MacKenzie | -1/+1 |
| 2020-01-11 | Rollup merge of #68084 - estebank:ice-68000, r=varkor | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | {syntax -> rustc_ast_passes}::feature_gate | Mazdak Farrokhzad | -2/+2 |
| 2020-01-11 | nix syntax::early_buffered_lints | Mazdak Farrokhzad | -4/+5 |
| 2020-01-11 | simplify feature_err imports | Mazdak Farrokhzad | -2/+2 |
| 2020-01-10 | Change `next_point` when `shrink_to_hi` is more appropriate | Esteban Küber | -1/+1 |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -43/+34 |
| 2020-01-09 | Add a `constness` field to `ast::TraitRef` | Dylan MacKenzie | -1/+1 |
| 2020-01-04 | Rollup merge of #67137 - anp:tracked-panic-internals, r=eddyb | Dylan DPC | -8/+2 |
| 2020-01-04 | core and std macros and panic internals use panic::Location::caller. | Adam Perry | -8/+2 |
| 2020-01-02 | Normalize `syntax::edition` imports. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -9/+9 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -8/+8 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -26/+26 |
| 2019-12-31 | Rollup merge of #67744 - Centril:reduce-diversity, r=petrochenkov | Mazdak Farrokhzad | -4/+6 |
| 2019-12-31 | parser::diagnostics: remove fn fatal | Mazdak Farrokhzad | -4/+6 |