| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-08-09 | remove `P` | Deadbeef | -2/+1 | |
| 2025-07-22 | Implement AST visitors using a derive macro. | Camille GILLOT | -8/+12 | |
| 2025-06-22 | Implement DesugaringKind::FormatLiteral | mejrs | -0/+8 | |
| 2025-03-10 | Limit formatting width and precision to 16 bits. | Mara Bos | -1/+1 | |
| 2024-12-31 | Account for format_args in HiddenUnicodeCodepoints lint | Michael Goulet | -0/+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 | -2/+2 | |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -2/+3 | |
| 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_macros` from numerous crates. | Nicholas Nethercote | -0/+1 | |
| 2023-08-02 | get auto traits for parallel rustc | SparrowLii | -6/+0 | |
| Signed-off-by: SparrowLii <liyuan179@huawei.com> | ||||
| 2023-04-10 | Fix typos in compiler | DaniPopes | -1/+1 | |
| 2023-03-16 | Flatten nested format_args!() into one. | Mara Bos | -2/+2 | |
| 2023-01-27 | Replace format flags u32 by enums and bools. | Mara Bos | -2/+24 | |
| 2023-01-24 | Work around issue 106930. | Mara Bos | -0/+6 | |
| 2023-01-12 | Expand format_args!() in rust_ast_lowering. | Mara Bos | -0/+244 | |
