aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Change Ty::Param to contain param IDFlorian Diebold2020-02-0711-127/+136
|
* WIP use params for APITFlorian Diebold2020-02-073-1/+64
|
* Fix assoc type selectionFlorian Diebold2020-02-072-32/+43
|
* Fix another testFlorian Diebold2020-02-072-7/+3
|
* First stab at desugaring bounds for APITFlorian Diebold2020-02-073-10/+56
|
* Fix crashFlorian Diebold2020-02-071-4/+7
|
* Fix enum constructorsFlorian Diebold2020-02-073-11/+9
|
* Fix printing of function typesFlorian Diebold2020-02-077-72/+73
|
* Lower impl trait to variables, move away from using placeholders where they ↵Florian Diebold2020-02-079-188/+220
| | | | don't belong
* wip lower impl trait to type argsFlorian Diebold2020-02-078-14/+97
|
* wip implement lowering modeFlorian Diebold2020-02-072-26/+34
|
* Add impl trait lowering modeFlorian Diebold2020-02-076-40/+141
|
* Introduce TyLoweringContextFlorian Diebold2020-02-076-152/+144
|
* Merge #3049bors[bot]2020-02-0728-107/+95
|\ | | | | | | | | | | | | | | 3049: Introduce assists utils r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Introduce assists utilsAleksey Kladov2020-02-075-26/+32
| |
| * Name assist handlersAleksey Kladov2020-02-0727-33/+17
| |
| * CleanupsAleksey Kladov2020-02-071-2/+5
| |
| * Cleanup importsAleksey Kladov2020-02-071-1/+1
| |
| * CleanupAleksey Kladov2020-02-072-4/+11
| |
| * CleanupAleksey Kladov2020-02-071-3/+4
| |
| * SimplifyAleksey Kladov2020-02-072-42/+29
| |
* | Merge #3048bors[bot]2020-02-077-71/+45
|\ \ | |/ |/| | | | | | | | | | | 3048: Remove irrelevant distinction r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * RenameAleksey Kladov2020-02-076-23/+23
| |
| * Remove irrelevant distinctionAleksey Kladov2020-02-076-48/+22
| |
* | Merge #3047bors[bot]2020-02-075-20/+20
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3047: Update async unsafe fn ordering in parser r=matklad a=kiljacken As of rust-lang/rust#61319 the correct order for functions that are both unsafe and async is: `async unsafe fn` and not `unsafe async fn`. This commit updates the parser tests to reflect this, and corrects parsing behavior to accept the correct ordering. Fixes #3025 Co-authored-by: Emil Lauridsen <[email protected]>
| * | Update async unsafe fn ordering.Emil Lauridsen2020-02-075-20/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As of rust-lang/rust#61319 the correct order for functions that are both unsafe and async is: `async unsafe fn` and not `unsafe async fn`. This commit updates the parser tests to reflect this, and corrects parsing behavior to accept the correct ordering. Fixes #3025
* | | Merge #3040bors[bot]2020-02-0719-259/+686
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3040: Rework value parameter parsing r=matklad a=tobz1000 Fixes #2847. - `Fn__(...)` parameters with idents/patterns no longer parse - Trait function parameters with arbitrary patterns parse - Trait function parameters without idents/patterns no longer parse - `fn(...)` parameters no longer parse with patterns other than a single ident __Question__: The pre-existing test `param_list_opt_patterns` has been kept as-is, although the name no longer makes sense (it's testing `Fn__(...)` params, which aren't allowed patterns any more). What would be best to do about this? Co-authored-by: Toby Dimmick <[email protected]>
| * | PR tweaksToby Dimmick2020-02-073-21/+18
| | |
| * | Closure params testToby Dimmick2020-02-063-0/+77
| | |
| * | rustfmtToby Dimmick2020-02-061-2/+2
| | |
| * | Rework value parameter parsingToby Dimmick2020-02-0617-255/+608
| | | | | | | | | | | | | | | | | | | | | - `Fn__(...)` parameters with idents/patterns no longer parse - Trait function parameters with arbitrary patterns parse - Trait function parameters without idents/patterns no longer parse - `fn(...)` parameters no longer parse with patterns other than a single ident
* | | Merge #3044bors[bot]2020-02-071-6/+7
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3044: Don't crash when recieving unkown file for cargo diagnostic. r=matklad a=kiljacken Fixes #3014 Co-authored-by: Emil Lauridsen <[email protected]>
| * | | to_string_lossy() -> display()Emil Lauridsen2020-02-071-4/+1
| | | |
| * | | Don't crash when recieving unkown file for cargo diagnostic.Emil Lauridsen2020-02-071-6/+10
| | |/ | |/|
* | | Cleanup early return assistAleksey Kladov2020-02-072-11/+29
| | |
* | | Generalize invert_if to just always workAleksey Kladov2020-02-073-18/+35
|/ /
* / A tiny bit more consistent APIAleksey Kladov2020-02-062-2/+2
|/
* Minor renameAleksey Kladov2020-02-063-9/+11
|
* Remove the leftovers after ImportLocator removalKirill Bulatov2020-02-063-5/+4
|
* Doctest autoimportAleksey Kladov2020-02-063-10/+8
|
* Fix testsAleksey Kladov2020-02-062-13/+24
|
* Mostly remove ImoportLocator infraAleksey Kladov2020-02-063-178/+21
|
* Assists are not genericAleksey Kladov2020-02-0627-84/+59
|
* Remove assists TestDBAleksey Kladov2020-02-062-47/+0
|
* Start switching assists to a root databaseAleksey Kladov2020-02-063-39/+42
|
* Make assists use ImportsLocator directlyAleksey Kladov2020-02-065-36/+33
|
* Move imports locator to ide_dbAleksey Kladov2020-02-064-11/+11
|
* Add a fixme noteAleksey Kladov2020-02-061-0/+2
|
* Move NameKind upAleksey Kladov2020-02-067-253/+252
|
* SimplifyAleksey Kladov2020-02-061-3/+4
|