aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis
Commit message (Collapse)AuthorAgeFilesLines
* indent on typing dot. fixes #439Simon Vandel Sillesen2019-01-051-13/+17
|
* fix testsAleksey Kladov2019-01-053-79/+49
|
* show types in local variable hoversAleksey Kladov2019-01-052-10/+27
|
* kill approximatelly_resolve_symbolAleksey Kladov2019-01-054-90/+11
|
* inline goto_defention testsAleksey Kladov2019-01-053-66/+58
|
* move goto_defenition to a separate fileAleksey Kladov2019-01-053-11/+91
|
* introduce separate goto_defenitionAleksey Kladov2019-01-051-0/+7
|
* kill accidentally added fileAleksey Kladov2019-01-051-73/+0
|
* move typeof to hoverAleksey Kladov2019-01-053-18/+18
|
* fold doc_comment into hoverAleksey Kladov2019-01-053-109/+110
|
* move hover implementation to ra_analysisAleksey Kladov2019-01-053-26/+74
|
* wipAleksey Kladov2019-01-051-0/+26
|
* split import assistAleksey Kladov2019-01-051-0/+73
|
* Merge #370bors[bot]2019-01-044-5/+26
|\ | | | | | | | | | | | | | | | | | | | | | | | | 370: Self params & type r=matklad a=flodiebold This implements type inference for `self`, so field completion for methods taking `self` works now. - rename `IMPL_ITEM` to `IMPL_BLOCK` -- rustc calls the methods etc. inside an impl `ImplItem`s, and the impl itself doesn't define an item, so I thought this name was clearer. - add HIR for impl blocks -- we collect all impls in a crate at once, so we can go from methods to containing impls, and since we will later also need to find all impls for a certain type (which may be anywhere in the crate, I think?). We could be more lazy here, but I don't know if it's worth the complexity. - resolve `self` and `Self` during type inference - refactor a bit in ty.rs as well Co-authored-by: Florian Diebold <[email protected]>
| * Rename ImplsInCrateQuery as wellFlorian Diebold2019-01-041-1/+1
| |
| * Add a test for self field completionFlorian Diebold2019-01-043-5/+25
| | | | | | | | Needed to add a default crate graph in the analysis for that.
| * Add HIR for impl blocksFlorian Diebold2019-01-041-0/+1
| | | | | | | | | | | | | | | | | | Since we need to be able to go from def to containing impl block, as well as the other direction, and to find all impls for a certain type, a design similar to the one for modules, where we collect all impls for the whole crate and keep them in an arena, seemed fitting. The ImplBlock type, which provides the public interface, then consists only of an Arc to the arena containing all impls, and the index into it.
* | :arrow_up: salsaAleksey Kladov2019-01-041-1/+1
|/
* parse doc comment for itemscsmoe2019-01-042-2/+3
|
* index stuff produced by macrosAleksey Kladov2019-01-032-11/+37
|
* construct index from symbols directlyAleksey Kladov2019-01-032-13/+17
|
* don't create many compilation units for testsAleksey Kladov2019-01-033-13/+5
|
* embed file_id into FileSymbolAleksey Kladov2019-01-033-35/+34
|
* fix the testAleksey Kladov2019-01-031-1/+1
|
* more enterprisey assists APIAleksey Kladov2019-01-031-13/+3
|
* split assists over several filesAleksey Kladov2019-01-031-1/+1
|
* rename code-actions -> assistsAleksey Kladov2019-01-031-6/+6
|
* hardcode vec macroAleksey Kladov2019-01-031-1/+9
|
* Merge #409bors[bot]2019-01-031-0/+79
|\ | | | | | | | | | | | | | | 409: Add Analysis#teype_of test r=matklad a=h-michael Co-authored-by: Hirokazu Hata <[email protected]>
| * Deive type_of test from testsHirokazu Hata2019-01-032-17/+80
| |
| * Remove unnecessary mock functionsHirokazu Hata2019-01-031-27/+1
| |
| * Add Analysis#teype_of testHirokazu Hata2019-01-032-2/+44
| |
* | docsAleksey Kladov2019-01-032-3/+33
| |
* | use LocalPtr in navigation targetAleksey Kladov2019-01-033-6/+12
| |
* | use LocalSyntaxPtr for file symbolAleksey Kladov2019-01-033-53/+49
| |
* | move some logic to navigation targetAleksey Kladov2019-01-033-113/+127
| |
* | explain that completion shouldn't do filteringAleksey Kladov2019-01-031-1/+15
|/
* simplify runnablesAleksey Kladov2019-01-025-123/+63
|
* fix compilationAleksey Kladov2019-01-022-2/+2
|
* doctringsAleksey Kladov2019-01-021-28/+62
|
* get rid of AnalysisImplAleksey Kladov2019-01-022-101/+80
|
* remove AnalysisHostImplAleksey Kladov2019-01-022-45/+26
|
* remove some methods from analysis implAleksey Kladov2019-01-022-22/+13
|
* move world-symbols to file_symbolsAleksey Kladov2019-01-023-42/+42
|
* Merge #404bors[bot]2019-01-024-29/+171
|\ | | | | | | | | | | | | | | 404: Move FileSymbol to ra_analysis r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * fix testsAleksey Kladov2019-01-021-5/+5
| |
| * make FileSymbol privateAleksey Kladov2019-01-022-8/+7
| |
| * use navigation target in APIAleksey Kladov2019-01-022-7/+19
| |
| * introduce navigation targetAleksey Kladov2019-01-022-8/+23
| |
| * move symbols to ra_analysisAleksey Kladov2019-01-023-8/+124
| |