aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* 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
| |
* | rename MFileId -> HirFileIdAleksey Kladov2019-01-013-4/+4
| |
* | add items from macros to modulesAleksey Kladov2019-01-011-0/+1
| |
* | hard-code expansion of query_groupAleksey Kladov2019-01-011-1/+23
| |
* | renameAleksey Kladov2019-01-011-4/+4
| |
* | move more macros to hirAleksey Kladov2019-01-015-43/+14
| |
* | use macros database in analysisAleksey Kladov2019-01-014-62/+22
|/
* place complete_use_tree_keyword in the same mod with complete_expr_keywordgfreezy2019-01-013-77/+67
|
* move to a seperate complete_use_tree_keyword modgfreezy2019-01-013-64/+77
|
* complete "self" and "super"gfreezy2019-01-011-20/+44
|
* complete "use crate" for "use cr" toogfreezy2019-01-011-2/+14
|
* complete crate in use stmtgfreezy2019-01-011-0/+29
|
* Merge #395bors[bot]2018-12-312-14/+19
|\ | | | | | | | | | | | | | | 395: generalize r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * generalize highlighting to work with nodesAleksey Kladov2018-12-311-2/+2
| |
| * generalize extend selection to work with nodesAleksey Kladov2018-12-311-12/+17
| |
* | Make modules with tests runnableJan Jansen2018-12-315-4/+272
|/ | | | Fixes #154
* Merge #375bors[bot]2018-12-303-3/+123
|\ | | | | | | | | | | | | | | | | | | 375: Move renames into ra_analysis and rename the correct range r=DJMcNab a=DJMcNab Fixes #230. Supersedes #235. TODO: add some tests for this Co-authored-by: DJMcNab <[email protected]>