| Age | Commit message (Expand) | Author | Lines |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -2/+2 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -2/+2 |
| 2020-02-28 | remove redundant clones, references to operands, explicit boolean comparisons... | Matthias Krüger | -1/+1 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -2/+2 |
| 2020-02-07 | Rollup merge of #68889 - Zoxc:hir-krate, r=eddyb | Dylan DPC | -2/+2 |
| 2020-02-06 | Remove the `Forest` type | John Kåre Alsaker | -1/+1 |
| 2020-02-06 | Move the `krate` method to Hir and remove the Krate dep node | John Kåre Alsaker | -1/+1 |
| 2020-02-06 | Add a Hir wrapper type | John Kåre Alsaker | -1/+1 |
| 2020-02-06 | Auto merge of #68664 - tspiteri:no_run-complete-build, r=nikomatsakis | bors | -1/+1 |
| 2020-02-04 | remove redundant imports (clippy::single_component_path_imports) | Matthias Krüger | -1/+0 |
| 2020-02-01 | syntax: reexport attr globals | Mazdak Farrokhzad | -1/+1 |
| 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-01 | syntax: move GLOBALS to attr module | Mazdak Farrokhzad | -1/+1 |
| 2020-01-30 | rustdoc: attempt full build for compile_fail test | Trevor Spiteri | -1/+1 |
| 2020-01-20 | Rollup merge of #68357 - ollie27:rustdoc_test_errors, r=GuillaumeGomez | Dylan DPC | -3/+7 |
| 2020-01-18 | rustdoc: Fix handling of compile errors when running `rustdoc --test` | Oliver Middleton | -3/+7 |
| 2020-01-17 | Use named fields for `hir::ItemKind::Impl` | Dylan MacKenzie | -2/+2 |
| 2020-01-15 | remove redundant clones, found by clippy | Matthias Krüger | -1/+1 |
| 2020-01-13 | Auto merge of #67850 - GuillaumeGomez:err-codes-checkup, r=Mark-Simulacrum | bors | -2/+1 |
| 2020-01-10 | nix syntax::errors & prefer rustc_errors over errors | Mazdak Farrokhzad | -2/+2 |
| 2020-01-08 | normalize rustc::hir::intravisit imports | Mazdak Farrokhzad | -1/+1 |
| 2020-01-08 | intravisit: abstract over HIR Map | Mazdak Farrokhzad | -1/+3 |
| 2020-01-06 | Fix error code failure check in rustdoc test | Guillaume Gomez | -2/+1 |
| 2020-01-06 | Auto merge of #67886 - Centril:rustc_hir_canon_imports, r=nagisa | bors | -3/+4 |
| 2020-01-05 | Remove rustc_hir reexports in rustc::hir. | Mazdak Farrokhzad | -3/+4 |
| 2020-01-04 | rustdoc: Avoid panic when parsing codeblocks for playground links | Oliver Middleton | -76/+72 |
| 2020-01-02 | Normalize `syntax::edition` imports. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-02 | Normalize `syntax::symbol` imports. | Mazdak Farrokhzad | -1/+1 |
| 2020-01-02 | Normalize `syntax::source_map` imports. | Mazdak Farrokhzad | -2/+3 |
| 2020-01-01 | Rename `syntax_pos` to `rustc_span` in source code | Vadim Petrochenkov | -1/+1 |
| 2019-12-22 | Format the world | Mark Rousskov | -120/+133 |
| 2019-11-30 | Rollup merge of #66895 - Centril:rustc_feature, r=oli-obk | Mazdak Farrokhzad | -1/+1 |
| 2019-11-30 | move UnstableFeatures -> rustc_feature | Mazdak Farrokhzad | -1/+1 |
| 2019-11-26 | Have Queries own the GlobalCtxt. | Camille GILLOT | -1/+1 |
| 2019-11-26 | Review nits. | Camille GILLOT | -2/+2 |
| 2019-11-26 | Reduce righward drift. | Camille GILLOT | -34/+33 |
| 2019-11-25 | Don't move stuff out of Compiler::enter. | Camille GILLOT | -18/+18 |
| 2019-11-24 | Isolate compiler queries inside the Queries type. | Camille GILLOT | -16/+19 |
| 2019-11-20 | Delete ProcessCfgMod | Mark Rousskov | -2/+1 |
| 2019-11-16 | move DIAGNOSTICS usage to rustc_driver | Mazdak Farrokhzad | -0/+1 |
| 2019-11-13 | Rollup merge of #66297 - vakaras:edit-queries, r=oli-obk | Yuki Okushi | -0/+1 |
| 2019-11-13 | Rollup merge of #66166 - GuillaumeGomez:rename-rustdoc-to-doc, r=QuietMisdreavus | Yuki Okushi | -1/+1 |
| 2019-11-11 | Add a callback that allows compiler consumers to override queries. | Vytautas Astrauskas | -0/+1 |
| 2019-11-10 | move syntax::parse -> librustc_parse | Mazdak Farrokhzad | -2/+3 |
| 2019-11-10 | move config.rs to libsyntax_expand | Mazdak Farrokhzad | -1/+2 |
| 2019-11-06 | rename cfg(rustdoc) into cfg(doc) | Guillaume Gomez | -1/+1 |
| 2019-10-23 | Rollup merge of #65193 - Mark-Simulacrum:lockless-lintstore, r=nikomatsakis | Mazdak Farrokhzad | -0/+1 |
| 2019-10-21 | Rollup merge of #65314 - tmiasko:rustdoc-z, r=ollie27 | Mazdak Farrokhzad | -0/+3 |
| 2019-10-19 | move parse_cfgspecs to rustc_interface | Mazdak Farrokhzad | -1/+1 |