aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Move numeric names inside of `NameRef`Aleksey Kladov2019-08-0910-37/+52
|/ /
* | Merge #1669bors[bot]2019-08-097-16/+39
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1669: Parse tuple struct field initialization r=matklad a=eupn Closes #1218. This PR modifies the parser to accept the following code: ```rust fn main() { struct TupleStruct(usize); let s = TupleStruct { 0: 1usize, }; dbg!(s.0); } ``` <details><summary>with following AST:</summary> ``` SOURCE_FILE@[0; 118) FN_DEF@[0; 116) FN_KW@[0; 2) "fn" WHITESPACE@[2; 3) " " NAME@[3; 7) IDENT@[3; 7) "main" PARAM_LIST@[7; 9) L_PAREN@[7; 8) "(" R_PAREN@[8; 9) ")" WHITESPACE@[9; 10) " " BLOCK@[10; 116) L_CURLY@[10; 11) "{" WHITESPACE@[11; 16) "\n " STRUCT_DEF@[16; 42) STRUCT_KW@[16; 22) "struct" WHITESPACE@[22; 23) " " NAME@[23; 34) IDENT@[23; 34) "TupleStruct" POS_FIELD_DEF_LIST@[34; 41) L_PAREN@[34; 35) "(" POS_FIELD_DEF@[35; 40) PATH_TYPE@[35; 40) PATH@[35; 40) PATH_SEGMENT@[35; 40) NAME_REF@[35; 40) IDENT@[35; 40) "usize" R_PAREN@[40; 41) ")" SEMI@[41; 42) ";" WHITESPACE@[42; 47) "\n " LET_STMT@[47; 94) LET_KW@[47; 50) "let" WHITESPACE@[50; 51) " " BIND_PAT@[51; 52) NAME@[51; 52) IDENT@[51; 52) "s" WHITESPACE@[52; 53) " " EQ@[53; 54) "=" WHITESPACE@[54; 55) " " STRUCT_LIT@[55; 93) PATH@[55; 66) PATH_SEGMENT@[55; 66) NAME_REF@[55; 66) IDENT@[55; 66) "TupleStruct" WHITESPACE@[66; 67) " " NAMED_FIELD_LIST@[67; 93) L_CURLY@[67; 68) "{" WHITESPACE@[68; 77) "\n " NAMED_FIELD@[77; 86) NAME_REF@[77; 78) INT_NUMBER@[77; 78) "0" COLON@[78; 79) ":" WHITESPACE@[79; 80) " " LITERAL@[80; 86) INT_NUMBER@[80; 86) "1usize" COMMA@[86; 87) "," WHITESPACE@[87; 92) "\n " R_CURLY@[92; 93) "}" SEMI@[93; 94) ";" WHITESPACE@[94; 104) "\n \n " EXPR_STMT@[104; 114) MACRO_CALL@[104; 113) PATH@[104; 107) PATH_SEGMENT@[104; 107) NAME_REF@[104; 107) IDENT@[104; 107) "dbg" EXCL@[107; 108) "!" TOKEN_TREE@[108; 113) L_PAREN@[108; 109) "(" IDENT@[109; 110) "s" DOT@[110; 111) "." INT_NUMBER@[111; 112) "0" R_PAREN@[112; 113) ")" SEMI@[113; 114) ";" WHITESPACE@[114; 115) "\n" R_CURLY@[115; 116) "}" WHITESPACE@[116; 118) "\n\n" ``` </summary> Co-authored-by: Evgenii P <[email protected]>
| * | Make name_ref to accept numeric names optionallyEvgenii P2019-08-095-9/+9
| | |
| * | Parse tuple struct field initializationEvgenii P2019-08-094-8/+31
|/ /
* | Merge #1668bors[bot]2019-08-091-20/+15
|\ \ | | | | | | | | | | | | | | | | | | | | | 1668: Reduce code duplication in lexer r=matklad a=eupn During an investigation of a fix for #1218, I stumbled upon some code duplication in the lexer. Co-authored-by: Evgenii P <[email protected]>
| * | Change macro to functionEvgenii P2019-08-091-15/+13
| | |
| * | rustfmtEvgenii P2019-08-091-10/+10
| | |
| * | Reduce code duplication in lexer by introducing small macroEvgenii P2019-08-091-20/+17
|/ /
* | Merge #1661bors[bot]2019-08-089-1/+571
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1661: Parse function parameters attributes r=matklad a=eupn Fixes #1397. The [RFC-2565](https://github.com/rust-lang/rfcs/blob/master/text/2565-formal-function-parameter-attributes.md) specifies `#[attributes]` to function parameters: ```rust fn foo(#[attr] a, #[unused] b, #[must_use] ...) { // ... } ``` This PR adds those attributes into grammar and to the parser, extending corresponding inline tests. Co-authored-by: Evgenii P <[email protected]>
| * | Fix parser tests according to reviewEvgenii P2019-08-0819-498/+580
| | |
| * | Deduplicate while loop break conditionEvgenii P2019-08-081-2/+2
| | |
| * | Fix parser to correctly consume outer attrs before ellipsis paramEvgenii P2019-08-071-0/+4
| | |
| * | Fix variadic arg inline testEvgenii P2019-08-073-25/+25
| | |
| * | Add function parameters attributesEvgenii P2019-08-0715-21/+505
| | |
* | | Merge #1664bors[bot]2019-08-073-0/+63
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1664: assoc types bounds r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | assoc types boundsAleksey Kladov2019-08-073-0/+63
|/ / /
* | | Merge #1663bors[bot]2019-08-071-2/+2
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1663: architecture.md: update path to parser tests r=matklad a=eupn Co-authored-by: eupn <[email protected]>
| * | | architecture.md: update path to parser testseupn2019-08-071-2/+2
| | | |
* | | | Merge #1662bors[bot]2019-08-071-1/+1
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 1662: architecture.md: "finish not Y" -> "finish node Y" r=matklad a=eupn Is this a typo? Co-authored-by: eupn <[email protected]>
| * | | architecture.md: "finish not Y" -> "finish node Y"eupn2019-08-071-1/+1
|/ / / | | | | | | Is this a typo?
* | | Merge #1660bors[bot]2019-08-074-51/+109
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 1660: implement while let desugaring r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | implement while let desugaringAleksey Kladov2019-08-074-21/+76
| | |
| * | refactor if-let loweringAleksey Kladov2019-08-071-19/+25
| | | | | | | | | | | | mainly to get rid of unwraps
| * | refactor if loweringAleksey Kladov2019-08-071-17/+14
| | |
* | | Merge #1659bors[bot]2019-08-071-3/+3
|\| | | | | | | | | | | | | | | | | | | | | | | 1659: install server first r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | install server firstAleksey Kladov2019-08-071-3/+3
|/ / | | | | | | closes #1658
* | Merge #1652bors[bot]2019-08-065-112/+98
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1652: Improve type hints behavior r=matklad a=SomeoneToIgnore This PR fixed the following type hints issues: * Restructures the `InlayKind` enum contents based on the discussion here: https://github.com/rust-analyzer/rust-analyzer/pull/1606#issuecomment-515968055 * Races described in #1639 * Caches the latest decorations received for each file to show them the next time the file is opened (instead of a new server request) Co-authored-by: Kirill Bulatov <[email protected]>
| * | Avoid shared mutable stateKirill Bulatov2019-08-052-71/+55
| | |
| * | Cache decorations before the first change onlyKirill Bulatov2019-08-051-20/+21
| | |
| * | Use WeakMap to avoid memory leaksKirill Bulatov2019-08-051-10/+12
| | |
| * | Style and test fixesKirill Bulatov2019-08-042-34/+45
| | |
| * | Use proper inlay kindsKirill Bulatov2019-08-043-43/+15
| | |
| * | Query less hints on file openKirill Bulatov2019-08-041-18/+34
| | |
* | | Merge #1657bors[bot]2019-08-0620-163/+217
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1657: Ignore r=matklad a=matklad closes #1616 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | fix testsAleksey Kladov2019-08-061-2/+2
| | | |
| * | | allow to exclude certain files and directoriesAleksey Kladov2019-08-067-15/+43
| | | |
| * | | push glob errors outwardsAleksey Kladov2019-08-061-6/+7
| | | |
| * | | rename configAleksey Kladov2019-08-064-19/+14
| | | |
| * | | introduce ra_vfs_glob crateAleksey Kladov2019-08-0612-143/+173
|/ / / | | | | | | | | | It manages exclusion rules for the vfs crate
* | | Merge #1656bors[bot]2019-08-061-16/+16
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1656: cargo update r=kjeremy a=kjeremy Co-authored-by: Jeremy Kolb <[email protected]>
| * | | cargo updateJeremy Kolb2019-08-061-16/+16
|/ / /
* | | Merge #1655bors[bot]2019-08-069-45/+43
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1655: cleanup imports r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | cleanup importsAleksey Kladov2019-08-061-5/+2
| | | |
| * | | cleanupAleksey Kladov2019-08-066-9/+10
| | | |
| * | | renameAleksey Kladov2019-08-064-31/+31
|/ / /
* | | Merge #1654bors[bot]2019-08-062-20/+21
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1654: use Conv for severity r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | use Conv for severityAleksey Kladov2019-08-062-20/+21
|/ / /
* | | Merge #1648bors[bot]2019-08-052-20/+40
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1648: Optimize parsing a little r=lnicola a=lnicola This is the change from https://github.com/rust-analyzer/rust-analyzer/issues/1643#issuecomment-517979911. In the long run we should probably take a different approach, but until then this provides a decent speed-up (10.5s vs 11.5s according to `ra_cli analysis-stats`. EDIT: Does the profiling part make sense? I'm not sure if all parsing happens before the type inference begins or it's lazy. Co-authored-by: Laurențiu Nicola <[email protected]> Co-authored-by: Laurențiu Nicola <[email protected]>
| * | | Update crates/ra_cli/src/analysis_stats.rsLaurențiu Nicola2019-08-051-1/+1
| | | | | | | | | | | | Co-Authored-By: Aleksey Kladov <[email protected]>
| * | | Optimize Parser::is_composite a littleLaurențiu Nicola2019-08-051-19/+35
| | | |