aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Expand)AuthorAgeFilesLines
* Adjusted the completion lookups to filter by just the name.Kevin DeLorey2020-02-141-29/+44
* Completion now replaces whole fn/const/type def with snippet.Kevin DeLorey2020-02-131-16/+31
* Cheese const tests as they requre an ident before becoming a CONST_DEF.Kevin DeLorey2020-02-131-28/+21
* Started to refactor the trigger of the trait_impl completion.Kevin DeLorey2020-02-131-33/+77
* Formatting.Kevin DeLorey2020-02-111-1/+3
* Fixing minor suggestions and added module level documentation.Kevin DeLorey2020-02-112-11/+7
* Removed doc comments entirely from the changes.Kevin DeLorey2020-02-112-41/+0
* Formatted changes.Kevin DeLorey2020-02-113-29/+23
* Removed docs from private method.Kevin DeLorey2020-02-111-8/+0
* Fixed warning generated after refactoring.Kevin DeLorey2020-02-111-1/+1
* Updated the `add_missing_impl_members` to use the shared utility.Kevin DeLorey2020-02-112-34/+15
* Adjusted the hashset buckets to lump functions/consts together as their names...Kevin DeLorey2020-02-111-9/+10
* Added tests to test associated types and consts.Kevin DeLorey2020-02-111-0/+78
* Added some documentation to the `complete_trait_impl` completion.Kevin DeLorey2020-02-111-1/+48
* Added associated const magic completion.Kevin DeLorey2020-02-101-11/+53
* Added a utility function that can be used to determine the missing impl items.Kevin DeLorey2020-02-094-118/+95
* Merge branch 'master' into kdelorey/complete-trait-implKevin DeLorey2020-02-09327-3117/+5756
|\
| * Fix rebase leftoversKirill Bulatov2020-02-091-2/+2
| * Do not import anything if first segment of FQN resolvesKirill Bulatov2020-02-091-12/+36
| * Set auto-import targetAleksey Kladov2020-02-091-1/+17
| * Simplify Assists interfaceAleksey Kladov2020-02-095-141/+108
| * Slightly simpler API for groupsAleksey Kladov2020-02-092-48/+77
| * Some README fixes/cleanupsFlorian Diebold2020-02-091-1/+1
| * Merge #3050bors[bot]2020-02-0924-614/+1174
| |\
| | * Add two more testsFlorian Diebold2020-02-071-0/+51
| | * Fix some TODOsFlorian Diebold2020-02-073-11/+17
| | * Fix add_new assist (kind of)Florian Diebold2020-02-071-5/+10
| | * Don't print implicit type args from impl TraitFlorian Diebold2020-02-072-14/+21
| | * Deal better with implicit type parameters and argument listsFlorian Diebold2020-02-074-26/+138
| | * FormattingFlorian Diebold2020-02-0712-53/+98
| | * Clean up RPIT a bitFlorian Diebold2020-02-075-41/+14
| | * Fix compilation of other cratesFlorian Diebold2020-02-073-14/+25
| | * Use variables in predicates as wellFlorian Diebold2020-02-075-63/+52
| | * Comment fixes / todosFlorian Diebold2020-02-073-6/+8
| | * Fix APIT some moreFlorian Diebold2020-02-074-101/+115
| | * Fix APITFlorian Diebold2020-02-071-0/+2
| | * 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 d...Florian Diebold2020-02-079-188/+220
| | * 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
| * | Remove ImportResolver-related stubsKirill Bulatov2020-02-092-9/+1