| Age | Commit message (Expand) | Author | Lines |
| 2024-07-18 | More accurate span for anonymous argument suggestion | Esteban Küber | -6/+6 |
| 2024-07-16 | Deny keyword lifetimes pre-expansion | Michael Goulet | -9/+25 |
| 2024-07-16 | Remove references to `maybe_whole_expr`. | Nicholas Nethercote | -1/+0 |
| 2024-07-16 | Fix a comment. | Nicholas Nethercote | -1/+1 |
| 2024-07-16 | Inline and remove `Parser::parse_expr_dot_or_call_with_`. | Nicholas Nethercote | -53/+49 |
| 2024-07-16 | Inline and remove `Parser::parse_and_disallow_postfix_after_cast`. | Nicholas Nethercote | -13/+4 |
| 2024-07-16 | Reorder `Parser::parse_expr_dot_or_call_with` arguments. | Nicholas Nethercote | -5/+5 |
| 2024-07-16 | Inline `Parser::parse_item_common_`. | Nicholas Nethercote | -43/+32 |
| 2024-07-16 | Remove an unnecessary `?`. | Nicholas Nethercote | -8/+4 |
| 2024-07-15 | Rollup merge of #127407 - estebank:parser-suggestions, r=oli-obk | Matthias Krüger | -65/+86 |
| 2024-07-14 | Rollup merge of #127273 - nnethercote:fix-DebugParser, r=workingjubilee | Matthias Krüger | -70/+310 |
| 2024-07-13 | Rollup merge of #127558 - nnethercote:more-Attribute-cleanups, r=petrochenkov | Jubilee | -65/+48 |
| 2024-07-13 | Rollup merge of #127477 - nnethercote:tweak-inner_attr_ranges, r=petrochenkov | Jubilee | -8/+3 |
| 2024-07-13 | Fix `DebugParser`. | Nicholas Nethercote | -14/+104 |
| 2024-07-13 | Add a test for `Parser::debug_lookahead`. | Nicholas Nethercote | -0/+149 |
| 2024-07-13 | Change `look` from a macro to a function. | Nicholas Nethercote | -62/+63 |
| 2024-07-12 | Auto merge of #127636 - nnethercote:fix-Parser-look_ahead, r=oli-obk | bors | -30/+147 |
| 2024-07-12 | Add a new special case to `Parser::look_ahead`. | Nicholas Nethercote | -0/+29 |
| 2024-07-12 | Remove the bogus special case from `Parser::look_ahead`. | Nicholas Nethercote | -56/+28 |
| 2024-07-12 | Add unit tests for `Parser::look_ahead`. | Nicholas Nethercote | -0/+116 |
| 2024-07-12 | fix unused binding | Esteban Küber | -1/+1 |
| 2024-07-12 | More accurate incorrect use of `await` suggestion | Esteban Küber | -11/+7 |
| 2024-07-12 | Use more accurate span for `:` to `::` suggestion | Esteban Küber | -0/+2 |
| 2024-07-12 | Make parse error suggestions verbose and fix spans | Esteban Küber | -55/+78 |
| 2024-07-12 | Auto merge of #127382 - estebank:const-let, r=compiler-errors | bors | -1/+1 |
| 2024-07-11 | Use verbose style when suggesting changing `const` with `let` | Esteban Küber | -1/+1 |
| 2024-07-11 | check is_ident before parse_ident | trevyn | -2/+2 |
| 2024-07-11 | And additionally enforce ? and async/const aren't mixed | Michael Goulet | -0/+29 |
| 2024-07-10 | Enforce that ? and for<...> are not combined | Michael Goulet | -0/+13 |
| 2024-07-10 | Improve error message | Michael Goulet | -0/+8 |
| 2024-07-10 | Reorder modifiers and polarity to be *after* binder in trait bounds | Michael Goulet | -2/+2 |
| 2024-07-10 | Auto merge of #127419 - trevyn:issue-125446, r=fee1-dead | bors | -49/+63 |
| 2024-07-10 | Change empty replace range condition. | Nicholas Nethercote | -15/+16 |
| 2024-07-09 | Move `Spacing` into `FlatToken`. | Nicholas Nethercote | -17/+13 |
| 2024-07-08 | Split the stack in `make_attr_token_stream`. | Nicholas Nethercote | -26/+17 |
| 2024-07-08 | Use iterator normally in `make_attr_token_stream`. | Nicholas Nethercote | -4/+2 |
| 2024-07-08 | Use an `@` pattern to shorten some code. | Nicholas Nethercote | -6/+3 |
| 2024-07-08 | Clear `inner_attr_ranges` regularly. | Nicholas Nethercote | -8/+3 |
| 2024-07-08 | Add suggestions for possible missing `fn`, `struct`, or `enum` keywords | trevyn | -49/+63 |
| 2024-07-07 | Remove `Clone` derive from `LazyAttrTokenStreamImpl`. | Nicholas Nethercote | -1/+0 |
| 2024-07-07 | Rename some attribute types for consistency. | Nicholas Nethercote | -24/+22 |
| 2024-07-07 | Simplify `ReplaceRange`. | Nicholas Nethercote | -24/+21 |
| 2024-07-05 | Remove some unnecessary integer conversions. | Nicholas Nethercote | -5/+3 |
| 2024-07-03 | Rollup merge of #127092 - compiler-errors:rtn-dots-redux, r=estebank | Matthias Krüger | -21/+6 |
| 2024-07-02 | Import `std::{iter,mem}`. | Nicholas Nethercote | -11/+10 |
| 2024-07-02 | Rename `make_token_stream`. | Nicholas Nethercote | -6/+6 |
| 2024-07-02 | Shrink parser positions from `usize` to `u32`. | Nicholas Nethercote | -15/+12 |
| 2024-07-02 | Move more things around in `collect_tokens_trailing_token`. | Nicholas Nethercote | -23/+18 |
| 2024-07-02 | Move things around in `collect_tokens_trailing_token`. | Nicholas Nethercote | -7/+7 |
| 2024-07-02 | Flip an if/else in `AttrTokenStream::to_attr_token_stream`. | Nicholas Nethercote | -3/+3 |