Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |