| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-03-14 | Update `tests/ui/stats/hir-stats.stderr` output | Guillaume Gomez | -3/+3 | |
| 2024-03-01 | Detect more cases of `=` to `:` typo | Esteban Küber | -10/+10 | |
| When a `Local` is fully parsed, but not followed by a `;`, keep the `:` span arround and mention it. If the type could continue being parsed as an expression, suggest replacing the `:` with a `=`. ``` error: expected one of `!`, `+`, `->`, `::`, `;`, or `=`, found `.` --> file.rs:2:32 | 2 | let _: std::env::temp_dir().join("foo"); | - ^ expected one of `!`, `+`, `->`, `::`, `;`, or `=` | | | while parsing the type for `_` | help: use `=` if you meant to assign ``` Fix #119665. | ||||
| 2024-02-16 | [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives | 许杰友 Jieyou Xu (Joe) | -6/+6 | |
| 2024-01-31 | Add async bound modifier to enable async Fn bounds | Michael Goulet | -26/+26 | |
| 2024-01-05 | Remove `hir::Guard` | Matthew Jasper | -4/+4 | |
| Use Expr instead. Use `ExprKind::Let` to represent if let guards. | ||||
| 2023-12-25 | Make closures carry their own ClosureKind, rather than deducing what it is ↵ | Michael Goulet | -4/+4 | |
| from movability | ||||
| 2023-12-20 | Refactor AST trait bound modifiers | León Orell Valerian Liehr | -17/+17 | |
| 2023-11-24 | Add `Span` to `TraitBoundModifier` | Deadbeef | -29/+29 | |
| 2023-09-22 | Rollup merge of #116067 - saethlin:meta-stats-ice, r=WaffleLapkin | Matthias Krüger | -0/+7 | |
| Open the FileEncoder file for reading and writing Maybe I just don't know `File` well enough, but the previous comment didn't make it clear enough to me that we can't use `File::create`. This one does. Fixes https://github.com/rust-lang/rust/issues/116055 r? `@WaffleLapkin` | ||||
| 2023-09-22 | Open the FileEncoder file for reading and writing | Ben Kimock | -0/+7 | |
| 2023-09-21 | Record asyncness span in HIR | Michael Goulet | -16/+16 | |
| 2023-04-04 | Rename `ast::Static` to `ast::StaticItem` to match `ast::ConstItem` | Oli Scherer | -43/+43 | |
| 2023-02-21 | Use `ThinVec` in a few more AST types. | Nicholas Nethercote | -44/+44 | |
| 2023-02-21 | Use `ThinVec` in `ast::PatKind::Struct`. | Nicholas Nethercote | -51/+51 | |
| 2023-02-21 | Use `ThinVec` in `ast::Block`. | Nicholas Nethercote | -40/+40 | |
| 2023-02-21 | Use `ThinVec` in various AST types. | Nicholas Nethercote | -76/+76 | |
| This commit changes the sequence parsers to produce `ThinVec`, which triggers numerous conversions. | ||||
| 2023-02-21 | Use `ThinVec` in `ast::WhereClause`. | Nicholas Nethercote | -63/+63 | |
| 2023-02-21 | Use `ThinVec` in `ast::Generics` and related types. | Nicholas Nethercote | -52/+52 | |
| 2023-02-02 | Reinstate the `hir-stats.rs` tests on stage 1. | Nicholas Nethercote | -1/+5 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+220 | |
