| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2021-06-04 | Remove incorrect assertion in type parsing code | Fabian Wolff | -1/+0 | |
| 2021-05-16 | Implement Anonymous{Struct, Union} in the AST | jedel1043 | -0/+13 | |
| Add unnamed_fields feature gate and gate unnamed fields on parsing | ||||
| 2021-05-03 | Handle incorrect placement of parentheses in trait bounds more gracefully | Esteban Küber | -3/+36 | |
| Fix #84772. | ||||
| 2021-03-17 | Add pub as optional check_front_matter | Ivan Tham | -2/+2 | |
| async-pub check created a regression for default | ||||
| 2021-02-27 | Recover from X<Y,Z> when parsing const expr | Ömer Sinan Ağacan | -2/+10 | |
| This adds recovery when in array type syntax user writes [X; Y<Z, ...>] instead of [X; Y::<Z, ...>] Fixes #82566 Note that whenever we parse an expression and know that the next token cannot be `,`, we should be calling check_mistyped_turbofish_with_multiple_type_params for this recovery. Previously we only did this for statement parsing (e.g. `let x = f<a, b>;`). We now also do it when parsing the length field in array type syntax. | ||||
| 2020-12-17 | Address review comments | mibac138 | -7/+21 | |
| 2020-12-03 | Gracefully handle confusing -> with : in function return type | mibac138 | -13/+65 | |
| 2020-12-01 | Gracefully handle mistyping -> as => in function return type | mibac138 | -0/+21 | |
| 2020-10-25 | Tweak invalid `fn` header and body parsing | Esteban Küber | -1/+13 | |
| * Recover empty `fn` bodies when encountering `}` * Recover trailing `>` in return types * Recover from non-type in array type `[<BAD TOKEN>; LEN]` | ||||
| 2020-09-21 | fix typo in docs and comments | yuk1ty | -1/+1 | |
| 2020-09-15 | improve diagnostics for lifetime after `&mut` | SNCPlay42 | -1/+27 | |
| 2020-09-10 | Attach `TokenStream` to `ast::Ty` | Aaron Hill | -1/+1 | |
| A `Ty` does not have outer attributes, so we only capture tokens when parsing a `macro_rules!` matcher | ||||
| 2020-08-30 | mv compiler to compiler/ | mark | -0/+631 | |
