aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/assists/add_missing_impl_members.rs
Commit message (Collapse)AuthorAgeFilesLines
* Name assist handlersAleksey Kladov2020-02-071-608/+0
|
* Assists are not genericAleksey Kladov2020-02-061-3/+3
|
* Add profiling around add_impl_membersAleksey Kladov2020-02-061-0/+1
| | | | | | | | | This intention is pretty slow for `impl Interator`, because it has a ton of default methods which need to be substituted. The proper fix here is to not compute the actual edit until the user triggers the action, but that's awkward to do in the LSP right now, so let's just put a profiling code for now.
* Fix casingJeremy Kolb2020-01-141-2/+2
|
* More UI friendly labelsJeremy Kolb2020-01-141-2/+2
|
* Fix ordering problem between qualifying paths and substituting paramsFlorian Diebold2020-01-111-113/+8
|
* Some more refactoringFlorian Diebold2020-01-111-8/+6
|
* Fix file ID when qualifying paths; add another failing testFlorian Diebold2020-01-111-3/+31
|
* Handle type argsFlorian Diebold2020-01-111-9/+12
|
* More failing testsFlorian Diebold2020-01-111-1/+126
|
* Qualify some paths in 'add missing impl members'Florian Diebold2020-01-111-2/+47
|
* Add testFlorian Diebold2020-01-111-0/+23
|
* Fill in type params in 'add missing impl members' assistFlorian Diebold2019-12-241-14/+117
|
* Rename Source::ast -> Source::valueAleksey Kladov2019-11-201-1/+1
|
* Reduce some duplicationAleksey Kladov2019-11-151-2/+1
|
* simplify AssistCtx APIAleksey Kladov2019-10-271-5/+3
| | | | | We never actually use ability to create multiple actions out of a single context
* use more consistent namingAleksey Kladov2019-10-271-1/+1
| | | | | I think this is the first time I use global rename for rust-analyzer itself :-)
* check style for assist docsAleksey Kladov2019-10-261-2/+4
|
* add blank lines for readabilityAleksey Kladov2019-10-261-0/+2
|
* generate more assists docsAleksey Kladov2019-10-251-2/+56
|
* Merge branch 'master' into feature/issue/1856Alexander Andreev2019-09-301-20/+16
|\ | | | | | | | | # Conflicts: # crates/ra_assists/src/ast_editor.rs
| * cleanup editorAleksey Kladov2019-09-301-4/+7
| |
| * migrate add impl items to the new editing APIAleksey Kladov2019-09-281-8/+7
| |
| * simplify strip attrsAleksey Kladov2019-09-281-9/+3
| |
* | Added test for check doc strings in crates.Alexander Andreev2019-09-301-0/+2
|/ | | | #1856
* Start simplifying editing APIAleksey Kladov2019-09-261-5/+3
|
* keep ast creation API simpleAleksey Kladov2019-09-261-3/+4
|
* shorten AstBuilder namesAleksey Kladov2019-09-251-4/+2
|
* minor builder cleanupsAleksey Kladov2019-09-251-1/+1
|
* move ast builder to a separate fileAleksey Kladov2019-09-251-4/+1
|
* move assists to subdirAleksey Kladov2019-09-251-0/+340