| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-03-15 | Fold visit into ty | Michael Goulet | -2/+1 | |
| 2025-02-08 | Rustfmt | bjorn3 | -4/+5 | |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -2/+1 | |
| `rustc_span::symbol` defines some things that are re-exported from `rustc_span`, such as `Symbol` and `sym`. But it doesn't re-export some closely related things such as `Ident` and `kw`. So you can do `use rustc_span::{Symbol, sym}` but you have to do `use rustc_span::symbol::{Ident, kw}`, which is inconsistent for no good reason. This commit re-exports `Ident`, `kw`, and `MacroRulesNormalizedIdent`, and changes many `rustc_span::symbol::` qualifiers in `compiler/` to `rustc_span::`. This is a 200+ net line of code reduction, mostly because many files with two `use rustc_span` items can be reduced to one. | ||||
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -7/+6 | |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -7/+8 | |
| The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options. | ||||
| 2024-04-29 | Remove `extern crate rustc_session` from `rustc_lint`. | Nicholas Nethercote | -0/+1 | |
| 2024-01-23 | Rename `LintContext::emit_spanned_lint` as `LintContext::emit_span_lint`. | Nicholas Nethercote | -6/+2 | |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -2/+2 | |
| 2023-04-27 | rename `needs_subst` to `has_param` | Boxy | -1/+1 | |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -1/+1 | |
| 2023-01-09 | refactor: cleanup | Rejyr | -2/+0 | |
| 2023-01-09 | migrate: `early.rs` and `enum_intrinsics_non_enums.rs` | Rejyr | -8/+11 | |
| 2022-10-23 | Migrate all diagnostics | Nilstrieb | -4/+4 | |
| 2022-10-01 | Refactor rustc lint API | Maybe Waffle | -14/+12 | |
| 2022-07-06 | Update TypeVisitor paths | Alan Egerton | -1/+1 | |
| 2022-06-30 | lint: port enum intrinsics diagnostics | David Wood | -23/+7 | |
| Signed-off-by: David Wood <david.wood@huawei.com> | ||||
| 2022-01-15 | initial revert | Ellen | -1/+1 | |
| 2021-11-16 | Use get_diagnostic_name more | Cameron Steffen | -10/+8 | |
| 2021-10-11 | Add enum_intrinsics_non_enums lint | Flying-Toast | -0/+106 | |
