aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api
Commit message (Collapse)AuthorAgeFilesLines
* :arrow_up: salsaAleksey Kladov2019-01-175-29/+27
|
* kill last cancelablesAleksey Kladov2019-01-153-8/+7
|
* remove Canceled from impl of ra_ide_apiAleksey Kladov2019-01-157-79/+43
|
* remove Canceled from API implAleksey Kladov2019-01-156-73/+60
|
* hir is cancelation freeAleksey Kladov2019-01-151-1/+1
|
* remove Cancelable from type inferenceAleksey Kladov2019-01-153-12/+7
|
* remove Cancelable from TyAleksey Kladov2019-01-151-4/+3
|
* remove Cancelable from nameresAleksey Kladov2019-01-153-4/+4
|
* remove Cancelable from fn_scopesAleksey Kladov2019-01-153-4/+4
|
* remove Cancelable from funciton bodyAleksey Kladov2019-01-153-3/+3
|
* remove Cancelable from navigation targetAleksey Kladov2019-01-156-30/+18
|
* remove Cancelable from static&const APIAleksey Kladov2019-01-151-4/+4
|
* remove Cancelable from adt APIAleksey Kladov2019-01-153-5/+5
|
* remove Cancelable from Module API, part 2Aleksey Kladov2019-01-153-7/+6
|
* remove Cancelable from Module APIAleksey Kladov2019-01-153-7/+6
|
* remove cancelable from symbolsAleksey Kladov2019-01-155-14/+12
|
* remove Cancelable from source bindersAleksey Kladov2019-01-157-14/+12
|
* check_canceled does not return ResultAleksey Kladov2019-01-151-1/+1
|
* update salsaAleksey Kladov2019-01-151-1/+1
|
* Merge #546bors[bot]2019-01-1513-155/+309
|\ | | | | | | | | | | | | | | 546: replace `assert_dbg_eq` with Insta r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * switch to insta for testingAleksey Kladov2019-01-1513-155/+309
| |
* | Fix type inference for raw (byte) stringsMarcus Klaas de Vries2019-01-141-3/+2
|/
* Remove duplicationJeremy Kolb2019-01-141-74/+23
|
* Add visibility to hoverJeremy Kolb2019-01-141-9/+41
|
* fix go to parent moduleAleksey Kladov2019-01-132-2/+21
|
* goto defenition works for type-inferred methodsAleksey Kladov2019-01-131-2/+49
|
* Tweak message shown for query fallbackPascal Hertleif2019-01-131-1/+5
| | | | Small tweak for #518
* Add an explanatory message when we use the Query fallbackDJMcNab2019-01-132-10/+36
|
* Add bench runnable and code lensJeremy Kolb2019-01-121-0/+5
|
* args -> paramsFlorian Diebold2019-01-122-2/+2
|
* Complete inherent methodsFlorian Diebold2019-01-122-4/+62
|
* Implement basic inherent method resolutionFlorian Diebold2019-01-121-0/+1
|
* actually produce missing def kindsAleksey Kladov2019-01-112-0/+36
|
* rename TreePtr -> TreeArcAleksey Kladov2019-01-113-6/+6
| | | | This is much clearer about the semantics
* kill NavTarget ptrAleksey Kladov2019-01-111-6/+2
|
* fix testsAleksey Kladov2019-01-117-96/+105
|
* return ref ranges from gotodefAleksey Kladov2019-01-112-6/+8
|
* envapsulate navigation target betterAleksey Kladov2019-01-115-94/+98
|
* simplifyAleksey Kladov2019-01-111-5/+2
|
* reshuffle nonesAleksey Kladov2019-01-111-21/+10
|
* refactor nav targetAleksey Kladov2019-01-111-20/+29
|
* Make from_syntax privateAleksey Kladov2019-01-112-14/+11
|
* move nav to a separate fileAleksey Kladov2019-01-112-73/+88
|
* group feature modulesAleksey Kladov2019-01-111-3/+3
|
* Use name resolution for goto definitionFlorian Diebold2019-01-103-4/+109
|
* Merge #470bors[bot]2019-01-102-8/+10
|\ | | | | | | | | | | | | | | | | | | 470: Type inference for enum variants r=flodiebold a=marcusklaas Opened a new PR instead of https://github.com/rust-analyzer/rust-analyzer/pull/461. Totally botched that one. I think I resolved all the issues mentioned there. Co-authored-by: Marcus Klaas de Vries <[email protected]>
| * Save variant names in EnumData to reduce needless queriesMarcus Klaas de Vries2019-01-101-10/+5
| | | | | | | | | | | | We already have their names when anyway, and when in all (current) situations where we're interested in an Enum's variants, we want their names.
| * Implement type inference for enum variantsMarcus Klaas de Vries2019-01-102-8/+15
| |
* | dont complete () if they are already thereAleksey Kladov2019-01-104-6/+26
|/
* Merge #475bors[bot]2019-01-102-7/+26
|\ | | | | | | | | | | | | | | | | | | | | 475: Show types of fields in completion r=matklad a=matklad ![image](https://user-images.githubusercontent.com/1711539/50910524-0f146200-143f-11e9-84d6-0ba80761cd89.png) r? @flodiebold Co-authored-by: Aleksey Kladov <[email protected]>