Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | 2 | -2/+22 |
| | |||||
* | Merge #7211 | bors[bot] | 2021-01-14 | 1 | -3/+13 |
|\ | | | | | | | | | | | | | | | | | | | | | | | 7211: Fixed expr meta var after path colons in mbe r=matklad a=edwin0cheng Fixes #7207 Added `L_DOLLAR` in `ITEM_RECOVERY_SET` , but I don't know whether it is a good idea. r? @matklad Co-authored-by: Edwin Cheng <[email protected]> | ||||
| * | Fixed expr meta var after path colons in mbe | Edwin Cheng | 2021-01-10 | 1 | -3/+13 |
| | | |||||
* | | 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 |
|/ | |||||
* | parser,syntax: Add separate parser for stmt with optional semicolon | Marijn Suijten | 2021-01-03 | 2 | -0/+6 |
| | | | | | Adjusting `grammar::fragments::stmt` to Optional or Yes will break original functionality and tests. | ||||
* | Fix mbe fail to pass expr with attr | Edwin Cheng | 2020-12-28 | 1 | -1/+1 |
| | |||||
* | 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 |
| | |||||
* | Update ungrammar for const block patterns | Lukas Wirth | 2020-12-23 | 1 | -0/+1 |
| | |||||
* | 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 |
| | | |||||
* | | Merge #6967 | bors[bot] | 2020-12-21 | 2 | -9/+19 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 6967: Correctly parse legacy trait objects with leading ForType r=matklad a=Veykril Fixes #1422 Co-authored-by: Lukas Wirth <[email protected]> | ||||
| * | | Properly parse legacy trait objects with leading ForType | Lukas Wirth | 2020-12-20 | 2 | -9/+19 |
| |/ | |||||
* / | Use pattern_single instead of pattern in mbe pat | Edwin Cheng | 2020-12-20 | 2 | -2/+2 |
|/ | |||||
* | Implement `RawAttr::filter` | Jonas Schievink | 2020-12-18 | 2 | -0/+7 |
| | |||||
* | Node-ify lifetimes | Lukas Wirth | 2020-12-16 | 8 | -29/+48 |
| | |||||
* | Move to upstream `macro_rules!` model | Jonas Schievink | 2020-12-15 | 2 | -15/+36 |
| | |||||
* | Parse unsafe extern block | David Tolnay | 2020-11-23 | 1 | -1/+9 |
| | |||||
* | Kill RAW_ literals | Aleksey Kladov | 2020-11-06 | 4 | -23/+5 |
| | | | | | Syntactically, they are indistinguishable from non-raw versions, so it doesn't make sense to separate then *at the syntax* level. | ||||
* | Don't interpret type path as part of visibility. | Arif Roktim | 2020-10-24 | 1 | -1/+5 |
| | |||||
* | Rename record_field_pat to record_pat_field | Pavan Kumar Sunkara | 2020-09-10 | 1 | -2/+2 |
| | |||||
* | Up proc-macro2 to 1.20 | kjeremy | 2020-09-03 | 1 | -1/+1 |
| | | | | This changes the way Display is implemented | ||||
* | CONST LOOPS ARE HERE | Aleksey Kladov | 2020-08-27 | 7 | -28/+37 |
| | |||||
* | Complete `pub` in fields | Aleksey Kladov | 2020-08-25 | 1 | -1/+8 |
| | |||||
* | Add description for crates that will be published | Pavan Kumar Sunkara | 2020-08-24 | 1 | -0/+1 |
| | |||||
* | Better recovery in `use foo::;` | Aleksey Kladov | 2020-08-13 | 1 | -2/+14 |
| | |||||
* | Align parser names with grammar | Aleksey Kladov | 2020-08-13 | 15 | -146/+124 |
| | |||||
* | Rename ra_syntax -> syntax | Aleksey Kladov | 2020-08-12 | 2 | -2/+2 |
| | |||||
* | Rename ra_parser -> parser | Aleksey Kladov | 2020-08-12 | 22 | -0/+4884 |