| Age | Commit message (Expand) | Author | Lines |
| 2020-03-07 | resolve: `directive` -> `import` | Vadim Petrochenkov | -30/+21 |
| 2020-03-07 | resolve: `ImportDirective` -> `Import` | Vadim Petrochenkov | -21/+17 |
| 2020-03-01 | ast: Unmerge structures for associated items and foreign items | Vadim Petrochenkov | -3/+2 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -5/+5 |
| 2020-02-27 | use char instead of &str for single char patterns | Matthias Krüger | -1/+1 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-15 | parse extern consts | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | parse associated statics. | Mazdak Farrokhzad | -1/+2 |
| 2020-02-15 | ast: normalize `ForeignItemKind::Ty` & `AssocItemKind::TyAlias`. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -1/+1 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -12/+9 |
| 2020-02-01 | Move builtin attribute logic to new rustc_attr crate. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 2020-01-17 | Use named fields for `ast::ItemKind::Impl` | Dylan MacKenzie | -1/+1 |
| 2020-01-12 | Fix formatting ellipses at the end of some diagnostics | varkor | -1/+1 |
| 2020-01-12 | Add backticks in appropriate places | varkor | -3/+3 |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -11/+7 |
| 2020-01-08 | - remove syntax::{span_warn!, span_err!, span_fatal!. struct_err!} | Mazdak Farrokhzad | -10/+15 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -2/+2 |
| 2020-01-04 | Auto merge of #67803 - Centril:librustc_hir, r=Zoxc | bors | -0/+1 |
| 2020-01-04 | Rollup merge of #67775 - mental32:master, r=Dylan-DPC | Dylan DPC | -5/+1 |
| 2020-01-04 | extract Export, ExportMap from hir::def | Mazdak Farrokhzad | -0/+1 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-01 | Forgot an .emit() | mental | -1/+2 |
| 2020-01-01 | Make use $crate a hard error | mental | -6/+1 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -2/+2 |
| 2019-12-30 | Rename `rustc_resolve/resolve_imports.rs` -> `rustc_resolve/imports.rs` | Vadim Petrochenkov | -2/+2 |
| 2019-12-30 | Rename `libsyntax_ext` and `libsyntax_expand` in code | Vadim Petrochenkov | -2/+2 |
| 2019-12-22 | Format the world | Mark Rousskov | -171/+244 |
| 2019-12-12 | `AssocImplKind::{Method -> Fn}`. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-12 | Remove `ast::{Impl,Trait}{Item,ItemKind}`. | Mazdak Farrokhzad | -9/+9 |
| 2019-12-12 | Unify assoc item visitors more. | Mazdak Farrokhzad | -2/+2 |
| 2019-12-12 | Unify associated item visitor. | Mazdak Farrokhzad | -2/+2 |
| 2019-12-12 | `TraitItemKind::Type` -> `TraitItemKind::TyAlias`. | Mazdak Farrokhzad | -1/+1 |
| 2019-12-11 | resolve: Always resolve visibilities on impl items | Vadim Petrochenkov | -12/+12 |
| 2019-12-09 | resolve: Make visibility resolution more speculative | Vadim Petrochenkov | -60/+36 |
| 2019-12-09 | resolve: Cleanup some field processing code | Vadim Petrochenkov | -32/+31 |
| 2019-12-09 | resolve: Resolve visibilities on fields with non-builtin attributes | Vadim Petrochenkov | -4/+14 |
| 2019-11-30 | Rollup merge of #66895 - Centril:rustc_feature, r=oli-obk | Mazdak Farrokhzad | -3/+1 |
| 2019-11-30 | move is_builtin_attr to syntax::attr | Mazdak Farrokhzad | -3/+1 |
| 2019-11-28 | rustc_metadata: Merge `cstore.rs` into `creader.rs` | Vadim Petrochenkov | -1/+1 |
| 2019-11-24 | expand: Fully preserve visibilities on unnamed fields with attributes | Vadim Petrochenkov | -0/+3 |
| 2019-11-23 | Move def collector from `rustc` to `rustc_resolve` | Vadim Petrochenkov | -3/+2 |
| 2019-11-15 | Rollup merge of #66197 - Centril:transparent-ast, r=varkor | Tyler Mandry | -7/+6 |
| 2019-11-14 | TAIT: adjust resolve | Mazdak Farrokhzad | -7/+6 |
| 2019-11-14 | Update to use new librustc_error_codes library | Guillaume Gomez | -0/+2 |
| 2019-11-10 | Auto merge of #66070 - petrochenkov:regattr, r=matthewjasper | bors | -2/+1 |
| 2019-11-09 | Move next_node_id to Resolver | Mark Rousskov | -1/+1 |