aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge #332bors[bot]2018-12-276-24/+177
|\ | | | | | | | | | | | | | | | | | | 332: Struct types r=matklad a=flodiebold Infer types for struct fields, and add basic field completions. There's also some code for enums, but I focused on getting structs working. There's still ways to go before this becomes useful: There's no autoderef (or even reference types) and no inference for `self`, for example. Co-authored-by: Florian Diebold <[email protected]>
| * Resolve field types lazilyFlorian Diebold2018-12-251-0/+1
| | | | | | | | I.e. not already when getting the HIR for the struct.
| * Add a hir::TypeRef as an intermediate between ast::TypeRef and ty::TyFlorian Diebold2018-12-251-1/+1
| |
| * Determine receiver for completion in a more robust wayFlorian Diebold2018-12-252-21/+31
| | | | | | | | Also rename a parameter.
| * Implement basic completion for fieldsFlorian Diebold2018-12-254-8/+133
| |
| * Do name resolution by namespace (types/values)Florian Diebold2018-12-253-13/+28
| |
| * Add basic HIR and types for structs/enumsFlorian Diebold2018-12-251-0/+2
| |
* | expose make_pub_crate actionAleksey Kladov2018-12-271-0/+1
| |
* | add fix for removing unnecessary braces in use statementsgfreezy2018-12-252-38/+27
|/
* Merge #326bors[bot]2018-12-243-5/+8
|\ | | | | | | | | | | | | | | 326: resolved #324: remove unnecessary braces in use statement. r=matklad a=gfreezy Add inspection for unnecessary braces in use statement Co-authored-by: gfreezy <[email protected]>
| * remove option from Diagnosticgfreezy2018-12-242-4/+4
| |
| * keep severity to Error & WeakWarninggfreezy2018-12-241-1/+1
| |
| * remove unnecessary braces in use statmentsgfreezy2018-12-232-4/+2
| |
| * add serverity to vscode diagnosticsgfreezy2018-12-232-1/+6
| |
* | Resolve paths to defs (functions currently) during type inferenceFlorian Diebold2018-12-232-1/+2
| |
* | CleanupFlorian Diebold2018-12-231-2/+8
| |
* | Add testing infrastructure for type inferenceFlorian Diebold2018-12-232-1/+16
| | | | | | | | - move dir_tests to test_utils for that.
* | Add beginnings of type infrastructureFlorian Diebold2018-12-231-0/+1
|/
* less verbose debug for library dataAleksey Kladov2018-12-222-1/+14
|
* completion uses hir scopesAleksey Kladov2018-12-222-24/+26
|
* fix snippet iconAleksey Kladov2018-12-211-1/+1
|
* binding iconAleksey Kladov2018-12-212-2/+5
|
* moar iconsAleksey Kladov2018-12-213-4/+29
|
* more iconsAleksey Kladov2018-12-211-1/+1
|
* specify completion item kindAleksey Kladov2018-12-214-12/+17
|
* cleanupAleksey Kladov2018-12-214-29/+34
|
* introduce ComletionItemKindAleksey Kladov2018-12-216-34/+28
|
* rename completion kindAleksey Kladov2018-12-211-6/+6
|
* Merge #315bors[bot]2018-12-218-770/+832
|\ | | | | | | | | | | | | | | | | | | | | 315: Split completion into manageable components r=matklad a=matklad The main idea here is to do completion in two phases: * first, we figure out surrounding context * then, we run a series of completers on the given context. Co-authored-by: Aleksey Kladov <[email protected]>
| * cleanupAleksey Kladov2018-12-215-15/+7
| |
| * docsAleksey Kladov2018-12-217-167/+181
| |
| * rename testsAleksey Kladov2018-12-211-8/+8
| |
| * scope-based copmletions on original fileAleksey Kladov2018-12-214-321/+177
| |
| * move path completion to a separate componentAleksey Kladov2018-12-213-44/+127
| |
| * more completion componentsAleksey Kladov2018-12-214-95/+104
| |
| * Start splitting completion into componentsAleksey Kladov2018-12-214-339/+424
| |
| * wipAleksey Kladov2018-12-211-5/+28
| |
* | hide empty changesAleksey Kladov2018-12-211-7/+17
|/
* add tests for pdAleksey Kladov2018-12-211-2/+13
|
* organize completion tests betterAleksey Kladov2018-12-213-321/+478
|
* use completions in APIAleksey Kladov2018-12-212-8/+7
|
* use Completions to collect completionsAleksey Kladov2018-12-213-26/+38
|
* docsAleksey Kladov2018-12-211-0/+5
|
* introduce CompletionsAleksey Kladov2018-12-211-0/+23
|
* make compleion item details privateAleksey Kladov2018-12-214-28/+51
|
* use builder interface for completion itemAleksey Kladov2018-12-213-55/+36
|
* flip paramsAleksey Kladov2018-12-211-3/+3
|
* introduce completion_item moduleAleksey Kladov2018-12-213-21/+54
|
* edits use source-root APIAleksey Kladov2018-12-212-7/+10
|
* hide atom edits a bitAleksey Kladov2018-12-212-3/+3
|