aboutsummaryrefslogtreecommitdiff
path: root/crates/parser
Commit message (Collapse)AuthorAgeFilesLines
* parser,syntax: Add separate parser for stmt with optional semicolonMarijn Suijten2021-01-032-0/+6
| | | | | Adjusting `grammar::fragments::stmt` to Optional or Yes will break original functionality and tests.
* Fix mbe fail to pass expr with attrEdwin Cheng2020-12-281-1/+1
|
* Fix macro_rules not accepting brackets or parenthesesLukas Wirth2020-12-241-2/+7
|
* Remove local ungrammar dependencyLukas Wirth2020-12-231-3/+1
|
* Parse const effect blockLukas Wirth2020-12-232-2/+14
|
* Parse ConstBlockPatLukas Wirth2020-12-231-0/+16
|
* Update ungrammar for const block patternsLukas Wirth2020-12-231-0/+1
|
* Merge #6965bors[bot]2020-12-212-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> ``` LET_STMT@200..236 LET_KW@200..203 "let" WHITESPACE@203..204 " " IDENT_PAT@204..206 NAME@204..206 IDENT@204..206 "_a" WHITESPACE@206..207 " " EQ@207..208 "=" WHITESPACE@208..209 " " ARRAY_EXPR@209..235 L_BRACK@209..210 "[" LITERAL@210..211 INT_NUMBER@210..211 "0" COMMA@211..212 "," LITERAL@212..234 ATTR@212..233 POUND@212..213 "#" L_BRACK@213..214 "[" PATH@214..217 PATH_SEGMENT@214..217 NAME_REF@214..217 IDENT@214..217 "cfg" TOKEN_TREE@217..232 L_PAREN@217..218 "(" IDENT@218..225 "feature" WHITESPACE@225..226 " " EQ@226..227 "=" WHITESPACE@227..228 " " STRING@228..231 "\"L\"" R_PAREN@231..232 ")" R_BRACK@232..233 "]" INT_NUMBER@233..234 "0" R_BRACK@234..235 "]" SEMICOLON@235..236 ";" ``` </details> Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
| * Parse attributes in tuple expressionsLukas Wirth2020-12-201-3/+5
| |
| * Properly attach attributes to Param instead of parent ParamListLukas Wirth2020-12-201-9/+8
| |
* | Merge #6967bors[bot]2020-12-212-9/+19
|\ \ | | | | | | | | | | | | | | | | | | | | | 6967: Correctly parse legacy trait objects with leading ForType r=matklad a=Veykril Fixes #1422 Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
| * | Properly parse legacy trait objects with leading ForTypeLukas Wirth2020-12-202-9/+19
| |/
* / Use pattern_single instead of pattern in mbe patEdwin Cheng2020-12-202-2/+2
|/
* Implement `RawAttr::filter`Jonas Schievink2020-12-182-0/+7
|
* Node-ify lifetimesLukas Wirth2020-12-168-29/+48
|
* Move to upstream `macro_rules!` modelJonas Schievink2020-12-152-15/+36
|
* Parse unsafe extern blockDavid Tolnay2020-11-231-1/+9
|
* Kill RAW_ literalsAleksey Kladov2020-11-064-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 Roktim2020-10-241-1/+5
|
* Rename record_field_pat to record_pat_fieldPavan Kumar Sunkara2020-09-101-2/+2
|
* Up proc-macro2 to 1.20kjeremy2020-09-031-1/+1
| | | | This changes the way Display is implemented
* CONST LOOPS ARE HEREAleksey Kladov2020-08-277-28/+37
|
* Complete `pub` in fieldsAleksey Kladov2020-08-251-1/+8
|
* Add description for crates that will be publishedPavan Kumar Sunkara2020-08-241-0/+1
|
* Better recovery in `use foo::;`Aleksey Kladov2020-08-131-2/+14
|
* Align parser names with grammarAleksey Kladov2020-08-1315-146/+124
|
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-122-2/+2
|
* Rename ra_parser -> parserAleksey Kladov2020-08-1222-0/+4884