Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix macro expansion for statements w/o semicolon | Edwin Cheng | 2021-03-16 | 1 | -3/+3 |
| | |||||
* | Specialization for async traits | Arnaud | 2021-02-15 | 1 | -0/+28 |
| | |||||
* | Pin Rust to 1.49.0 on CI | Jonas Schievink | 2021-02-12 | 1 | -5/+6 |
| | |||||
* | Add validation for mutable const items | Lukas Wirth | 2021-01-24 | 1 | -1/+1 |
| | |||||
* | Parse `impl const Trait` | Lukas Wirth | 2021-01-18 | 1 | -0/+4 |
| | |||||
* | Wrap remaining self/super/crate in Name{Ref} | Lukas Wirth | 2021-01-15 | 2 | -13/+20 |
| | |||||
* | Handle self/super/crate in PathSegment as NameRef | Lukas Wirth | 2021-01-15 | 1 | -1/+5 |
| | |||||
* | Add support for yiled keyword | Daiki Ihara | 2021-01-15 | 1 | -0/+16 |
| | |||||
* | Merge #7218 | bors[bot] | 2021-01-10 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | 7218: Fix typos r=Veykril a=regexident Apart from the very last commit on this PR (which fixes a public type's name) all changes are non-breaking. Co-authored-by: Vincent Esche <[email protected]> | ||||
| * | Fixed typos in code comments | Vincent Esche | 2021-01-09 | 1 | -1/+1 |
| | | |||||
* | | Replace SyntaxKind usage with T! macro where applicable | Lukas Wirth | 2021-01-10 | 5 | -19/+27 |
| | | |||||
* | | Use T! for bool keywords | Laurențiu Nicola | 2021-01-10 | 1 | -1/+1 |
| | | |||||
* | | Allow `true` and `false` keywords in const generics | Callym | 2021-01-10 | 1 | -1/+5 |
|/ | |||||
* | Fix macro_rules not accepting brackets or parentheses | Lukas Wirth | 2020-12-24 | 1 | -2/+7 |
| | |||||
* | Remove local ungrammar dependency | Lukas Wirth | 2020-12-23 | 1 | -3/+1 |
| | |||||
* | Parse const effect block | Lukas Wirth | 2020-12-23 | 2 | -2/+14 |
| | |||||
* | Parse ConstBlockPat | Lukas Wirth | 2020-12-23 | 1 | -0/+16 |
| | |||||
* | Merge #6965 | bors[bot] | 2020-12-21 | 2 | -12/+13 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6965: Properly attach attributes to Param instead of parent ParamList r=matklad a=Veykril Fixes #2783, fixes #2781 The problem with `let _a = [0,#[cfg(feature = "L")]0];` has already been fixed some time ago it seems: <details> <summary>Syntax Tree for the const item</summary> ``` [email protected] [email protected] "let" [email protected] " " [email protected] [email protected] [email protected] "_a" [email protected] " " [email protected] "=" [email protected] " " [email protected] [email protected] "[" [email protected] [email protected] "0" [email protected] "," [email protected] [email protected] [email protected] "#" [email protected] "[" [email protected] [email protected] [email protected] [email protected] "cfg" [email protected] [email protected] "(" [email protected] "feature" [email protected] " " [email protected] "=" [email protected] " " [email protected] "\"L\"" [email protected] ")" [email protected] "]" [email protected] "0" [email protected] "]" [email protected] ";" ``` </details> Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | Parse attributes in tuple expressions | Lukas Wirth | 2020-12-20 | 1 | -3/+5 |
| | | |||||
| * | Properly attach attributes to Param instead of parent ParamList | Lukas Wirth | 2020-12-20 | 1 | -9/+8 |
| | | |||||
* | | Properly parse legacy trait objects with leading ForType | Lukas Wirth | 2020-12-20 | 2 | -9/+19 |
|/ | |||||
* | Node-ify lifetimes | Lukas Wirth | 2020-12-16 | 6 | -27/+38 |
| | |||||
* | Move to upstream `macro_rules!` model | Jonas Schievink | 2020-12-15 | 1 | -13/+31 |
| | |||||
* | Parse unsafe extern block | David Tolnay | 2020-11-23 | 1 | -1/+9 |
| | |||||
* | Kill RAW_ literals | Aleksey Kladov | 2020-11-06 | 2 | -15/+3 |
| | | | | | Syntactically, they are indistinguishable from non-raw versions, so it doesn't make sense to separate then *at the syntax* level. | ||||
* | Rename record_field_pat to record_pat_field | Pavan Kumar Sunkara | 2020-09-10 | 1 | -2/+2 |
| | |||||
* | CONST LOOPS ARE HERE | Aleksey Kladov | 2020-08-27 | 6 | -18/+27 |
| | |||||
* | Complete `pub` in fields | Aleksey Kladov | 2020-08-25 | 1 | -1/+8 |
| | |||||
* | Better recovery in `use foo::;` | Aleksey Kladov | 2020-08-13 | 1 | -2/+14 |
| | |||||
* | Align parser names with grammar | Aleksey Kladov | 2020-08-13 | 14 | -138/+116 |
| | |||||
* | Rename ra_parser -> parser | Aleksey Kladov | 2020-08-12 | 14 | -0/+3516 |