| Age | Commit message (Expand) | Author | Lines |
| 2020-03-20 | remove redundant returns (clippy::needless_return) | Matthias Krüger | -2/+2 |
| 2020-03-20 | remove redundant import (clippy::single_component_path_imports) | Matthias Krüger | -2/+0 |
| 2020-03-19 | rustc: use LocalDefId instead of DefIndex in HirId. | Eduard-Mihai Burtescu | -2/+2 |
| 2020-03-18 | Rollup merge of #69920 - Centril:hir-cleanup, r=Zoxc | Mazdak Farrokhzad | -2/+1 |
| 2020-03-18 | fix pre-expansion linting infra | Mazdak Farrokhzad | -13/+5 |
| 2020-03-17 | Rollup merge of #70049 - oli-obk:param_env_empty_considered_unimplemented, r=... | Mazdak Farrokhzad | -1/+6 |
| 2020-03-17 | Rollup merge of #69881 - Centril:fix-69485, r=oli-obk | Mazdak Farrokhzad | -4/+2 |
| 2020-03-16 | Fiddle `ParamEnv` through to a place that used to use `ParamEnv::empty` in a ... | Oliver Scherer | -1/+6 |
| 2020-03-16 | Rollup merge of #69738 - mark-i-m:assoc-fn-2, r=eddyb | Dylan DPC | -2/+2 |
| 2020-03-16 | remove unnecessary hir::map imports | Mazdak Farrokhzad | -2/+1 |
| 2020-03-16 | Rollup merge of #69995 - contrun:add-context-to-literal-overflow, r=ecstatic-... | Dylan DPC | -5/+39 |
| 2020-03-15 | More Method->Fn renaming | Mark Mansi | -2/+2 |
| 2020-03-15 | Auto merge of #68944 - Zoxc:hir-map, r=eddyb | bors | -8/+8 |
| 2020-03-15 | VariantSizeDifferences: bail on SizeOverflow | Mazdak Farrokhzad | -4/+2 |
| 2020-03-15 | Rollup merge of #69589 - petrochenkov:maccall, r=Centril | Mazdak Farrokhzad | -5/+5 |
| 2020-03-15 | Add more context to the literal overflow message | YI | -5/+39 |
| 2020-03-14 | Index HIR after creating TyCtxt | John Kåre Alsaker | -5/+5 |
| 2020-03-14 | Update `krate_attrs` and `get_module` | John Kåre Alsaker | -3/+3 |
| 2020-03-14 | Make downstream crates compile. | Camille GILLOT | -1/+1 |
| 2020-03-14 | Move rustc_infer::traits to new crate rustc_trait_selection. | Camille GILLOT | -0/+1 |
| 2020-03-14 | Rollup merge of #69809 - matthiaskrgr:lifetimes, r=eddyb | Yuki Okushi | -3/+3 |
| 2020-03-12 | ast: `Mac`/`Macro` -> `MacCall` | Vadim Petrochenkov | -5/+5 |
| 2020-03-12 | remove lifetimes that can be elided (clippy::needless_lifetimes) | Matthias Krüger | -3/+3 |
| 2020-03-12 | Rollup merge of #69674 - mark-i-m:assoc-fn, r=matthewjasper | Mazdak Farrokhzad | -3/+3 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -2/+2 |
| 2020-03-05 | Rollup merge of #69736 - matthiaskrgr:even_more_clippy, r=Dylan-DPC | Dylan DPC | -2/+2 |
| 2020-03-05 | Use more efficient &&str to String conversion (clippy::inefficient_to_string) | Matthias Krüger | -2/+2 |
| 2020-03-04 | Don't use "if let" bindings to only check a value and not actually bind anyth... | Matthias Krüger | -1/+1 |
| 2020-03-03 | rename TraitItemKind::Method -> Fn | Mark Mansi | -2/+2 |
| 2020-03-03 | DefKind::Method -> DefKind::AssocFn | Mark Mansi | -1/+1 |
| 2020-03-01 | encode `;` stmt w/o expr as `StmtKind::Empty` | Mazdak Farrokhzad | -40/+36 |
| 2020-03-01 | Auto merge of #69380 - Zoxc:parent-module, r=michaelwoerister | bors | -2/+1 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -31/+31 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -30/+30 |
| 2020-02-29 | Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=Centril | Dylan DPC | -1/+1 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -2/+2 |
| 2020-02-29 | Add a `parent_module_from_def_id` query | John Kåre Alsaker | -2/+1 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -1/+1 |
| 2020-02-29 | Rollup merge of #69567 - matthiaskrgr:useless_fmt, r=nagisa | Dylan DPC | -11/+11 |
| 2020-02-29 | use .to_string() instead of format!() macro to create strings | Matthias Krüger | -11/+11 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -1/+1 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-23 | Auto merge of #69084 - yaahc:delayed-doc-lint, r=petrochenkov | bors | -61/+36 |
| 2020-02-22 | Remove trait | Jane Lusby | -44/+25 |
| 2020-02-21 | clean things up | Jane Lusby | -22/+12 |
| 2020-02-20 | Rollup merge of #69185 - RalfJung:const-prop-lints, r=oli-obk | Mazdak Farrokhzad | -0/+1 |
| 2020-02-18 | better lint names | Ralf Jung | -0/+1 |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -2/+2 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -1/+1 |
| 2020-02-16 | Other crates. | Camille GILLOT | -1/+1 |