| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-18 | Deduplicate `unmatched_delims` in `rustc_parse` to reduce confusion | xizheyin | -7/+13 | |
| Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | ||||
| 2025-04-22 | Rename `open_brace` to `open_delimiters` | xizheyin | -2/+2 | |
| Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | ||||
| 2025-04-22 | Move make_unclosed_delims_error to lexer/diagonostics.rs | xizheyin | -0/+24 | |
| Signed-off-by: xizheyin <xizheyin@smail.nju.edu.cn> | ||||
| 2024-10-23 | "innermost", "outermost", "leftmost", and "rightmost" don't need hyphens | Josh Triplett | -1/+1 | |
| These are all standard dictionary words and don't require hyphenation. | ||||
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -1/+1 | |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -1/+2 | |
| The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options. | ||||
| 2024-05-07 | narrow down visibilities in `rustc_parse::lexer` | Lin Yihai | -4/+4 | |
| 2024-02-28 | Rename `DiagnosticBuilder` as `Diag`. | Nicholas Nethercote | -6/+3 | |
| Much better! Note that this involves renaming (and updating the value of) `DIAGNOSTIC_BUILDER` in clippy. | ||||
| 2024-02-19 | Prefer `DiagnosticBuilder` over `Diagnostic` in diagnostic modifiers. | Nicholas Nethercote | -3/+3 | |
| There are lots of functions that modify a diagnostic. This can be via a `&mut Diagnostic` or a `&mut DiagnosticBuilder`, because the latter type wraps the former and impls `DerefMut`. This commit converts all the `&mut Diagnostic` occurrences to `&mut DiagnosticBuilder`. This is a step towards greatly simplifying `Diagnostic`. Some of the relevant function are made generic, because they deal with both errors and warnings. No function bodies are changed, because all the modifier methods are available on both `Diagnostic` and `DiagnosticBuilder`. | ||||
| 2023-10-13 | Format all the let chains in compiler | Michael Goulet | -3/+4 | |
| 2023-07-30 | inline format!() args up to and including rustc_middle | Matthias Krüger | -1/+1 | |
| 2023-04-10 | Fix typos in compiler | DaniPopes | -3/+3 | |
| 2023-03-07 | Simplify `sort_by` calls | Maybe Waffle | -1/+1 | |
| 2023-02-28 | rename unmatched_braces to unmatched_delims | yukang | -5/+5 | |
| 2023-01-27 | Improve unexpected close and mismatch delimiter hint in TokenTreesReader | yukang | -0/+119 | |
