| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Detect struct literal needing parentheses | Esteban Küber | -11/+26 | |
| Fix #82051. | ||||
| 2023-01-08 | Do not emit structured suggestion for turbofish with wrong span | Esteban Küber | -2/+10 | |
| Fix #79161. | ||||
| 2022-12-29 | Rollup merge of #106242 - estebank:diff-markers, r=jyn514 | Matthias Krüger | -1/+71 | |
| Detect diff markers in the parser Partly address #32059. | ||||
| 2022-12-28 | Add support for diff3 format | Esteban Küber | -0/+7 | |
| 2022-12-28 | Tweak wording | Esteban Küber | -4/+15 | |
| 2022-12-28 | Detect diff markers in the parser | Esteban Küber | -1/+53 | |
| Partly address #32059. | ||||
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -1/+1 | |
| The name makes a lot more sense, and `ty::TyKind` calls it `Ref` already as well. | ||||
| 2022-12-26 | remove unused imports | Takayuki Maeda | -1/+0 | |
| 2022-12-14 | Auto merge of #104875 - chenyukang:yukang/fix-104867-inc, r=estebank | bors | -35/+15 | |
| Properly handle postfix inc/dec in standalone and subexpr scenarios Fixes #104867 r? `@estebank` | ||||
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -3/+3 | |
| 2022-11-26 | will not suggest for postfix operator when can not handle precedences well | yukang | -1/+5 | |
| 2022-11-26 | add start_stmt to handle postfix increment | yukang | -14/+15 | |
| 2022-11-25 | fix #104867, Properly handle postfix inc/dec in standalone and subexpr scenarios | yukang | -41/+16 | |
| 2022-11-24 | Auto merge of #104507 - WaffleLapkin:asderefsyou, r=wesleywiser | bors | -1/+1 | |
| Use `as_deref` in compiler (but only where it makes sense) This simplifies some code :3 (there are some changes that are not exacly `as_deref`, but more like "clever `Option`/`Result` method use") | ||||
| 2022-11-22 | `rustc_parse`: remove `ref` patterns | Maybe Waffle | -5/+5 | |
| 2022-11-21 | Match crate and slug names | mejrs | -1/+1 | |
| 2022-11-19 | Rollup merge of #104566 - matthiaskrgr:clippy_perf_nov18, r=oli-obk | Dylan DPC | -2/+2 | |
| couple of clippy::perf fixes | ||||
| 2022-11-18 | couple of clippy::perf fixes | Matthias Krüger | -2/+2 | |
| 2022-11-17 | Use `ThinVec` in `ast::Path`. | Nicholas Nethercote | -8/+11 | |
| 2022-11-17 | Box `ExprKind::{Closure,MethodCall}`, and `QSelf` in expressions, types, and ↵ | Nicholas Nethercote | -5/+5 | |
| patterns. | ||||
| 2022-11-16 | Use `as_deref` in compiler (but only where it makes sense) | Maybe Waffle | -1/+1 | |
| 2022-11-11 | Rollup merge of #103468 - chenyukang:yukang/fix-103435-extra-parentheses, ↵ | Manish Goregaokar | -5/+19 | |
| r=estebank Fix unused lint and parser caring about spaces to won't produce invalid code Fixes #103435 | ||||
| 2022-11-04 | Don't silently eat label before block in block-like expr | Michael Goulet | -4/+8 | |
| 2022-10-28 | Gate some recovery behind a flag | Nilstrieb | -0/+12 | |
| Mainly in `expr.rs` | ||||
| 2022-10-24 | fix parentheses surrounding spacing issue in parser | yukang | -5/+19 | |
| 2022-10-23 | Migrate all diagnostics | Nilstrieb | -1/+1 | |
| 2022-10-21 | Rollup merge of #102922 - kper:bugfix/102902-filtering-json, r=oli-obk | Dylan DPC | -1/+9 | |
| Filtering spans when emitting json According to the issue #102902, we shouldn't emit spans which have an empty span and no suggested replacement. | ||||
| 2022-10-20 | Implement assertions and fixes to not emit empty spans without suggestions | Kevin Per | -1/+9 | |
| 2022-10-18 | Fix the bug of next_point in span | yukang | -2/+2 | |
| 2022-10-14 | more dupe word typos | Rageking8 | -1/+1 | |
| 2022-09-30 | Remove expr_parentheses_needed from ParseSess | Michael Goulet | -1/+2 | |
| 2022-09-27 | Implement IntoDiagnosticArg for rustc_ast::token::Token(Kind) | Xiretza | -3/+3 | |
| 2022-09-27 | Document use of Symbol::to_string() | Xiretza | -0/+2 | |
| 2022-09-27 | Migrate even more diagnostics in rustc_parse to diagnostic structs | Xiretza | -193/+109 | |
| 2022-09-27 | Migrate "struct literal body without path" error to diagnostic struct | Xiretza | -16/+11 | |
| 2022-09-27 | Migrate "expected semicolon" diagnostics to diagnostic structs | Xiretza | -16/+21 | |
| 2022-09-27 | Migrate "expected identifier" diagnostics to diagnostic structs | Xiretza | -29/+25 | |
| 2022-09-27 | Migrate more rustc_parse diagnostics to diagnostic structs | Xiretza | -37/+0 | |
| 2022-09-27 | Move rustc_parse diagnostic structs to separate module | Xiretza | -781/+5 | |
| 2022-09-27 | Migrate "invalid literal suffix" diagnostic to diagnostic structs | Xiretza | -1/+25 | |
| 2022-09-27 | Migrate more diagnostics in rustc_parse to diagnostic structs | Xiretza | -3/+247 | |
| 2022-09-26 | Rollup merge of #102286 - compiler-errors:recover-semi-in-block-item, ↵ | Matthias Krüger | -0/+8 | |
| r=davidtwco Recover some items that expect braces and don't take semicolons Fixes #102262 | ||||
| 2022-09-25 | Recover some items that expect braces and don't take semicolons | Michael Goulet | -0/+8 | |
| 2022-09-22 | Add missing code="" attributes to suggestion subdiagnostics | Xiretza | -4/+4 | |
| 2022-09-21 | FIX - adopt new Diagnostic naming in newly migrated modules | Jhonny Bill Mena | -2/+2 | |
| FIX - ambiguous Diagnostic link in docs UPDATE - rename diagnostic_items to IntoDiagnostic and AddToDiagnostic [Gardening] FIX - formatting via `x fmt` FIX - rebase conflicts. NOTE: Confirm wheather or not we want to handle TargetDataLayoutErrorsWrapper this way DELETE - unneeded allow attributes in Handler method FIX - broken test FIX - Rebase conflict UPDATE - rename residual _SessionDiagnostic and fix LintDiag link | ||||
| 2022-09-21 | UPDATE - rename SessionSubdiagnostic macro to Subdiagnostic | Jhonny Bill Mena | -7/+7 | |
| Also renames: - sym::AddSubdiagnostic to sym:: Subdiagnostic - rustc_diagnostic_item = "AddSubdiagnostic" to rustc_diagnostic_item = "Subdiagnostic" | ||||
| 2022-09-21 | UPDATE - rename DiagnosticHandler macro to Diagnostic | Jhonny Bill Mena | -42/+42 | |
| 2022-09-21 | UPDATE - rename DiagnosticHandler trait to IntoDiagnostic | Jhonny Bill Mena | -42/+42 | |
| 2022-09-16 | use subdiagnostic for logical negation, bitwise not | yukang | -3/+26 | |
| 2022-09-15 | more tweak on diagnostic messages | yukang | -0/+1 | |
