aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_assists
Commit message (Collapse)AuthorAgeFilesLines
* Correctly resolve crate name in use paths when import shadows itselfLukas Tobias Wirth2021-05-231-2/+1
|
* Merge #8922bors[bot]2021-05-222-2/+3
|\ | | | | | | | | | | | | | | | | 8922: Add more docs r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Add more docsAleksey Kladov2021-05-222-2/+3
| |
* | Merge #8868bors[bot]2021-05-224-228/+173
|\| | | | | | | | | | | | | | | 8868: internal: replace AstTransformer with mutable syntax trees r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * use more precise nameAleksey Kladov2021-05-223-12/+7
| |
| * internal: replace AstTransformer with mutable syntax treesAleksey Kladov2021-05-222-154/+104
| |
* | Merge #8901bors[bot]2021-05-222-27/+75
|\ \ | |/ |/| | | | | | | | | | | | | | | | | 8901: fix: `fill_match_arms` hangs on a tuple of large enums r=matklad a=iDawer + Lazy computation of missing arms. + Convenience function to test lazy computation: `ide_assists::tests::check_assist_unresolved`. Fixes #8835 Co-authored-by: Dawer <[email protected]>
| * Test `fill_match_arms` for lazy computation.Dawer2021-05-212-3/+38
| | | | | | | | This also adds `ide_assists::tests::check_assist_unresolved` function.
| * fix: `fill_match_arms` hangs on a tuple of large enumsDawer2021-05-201-2/+14
| |
| * Compute missing arms lazily.Dawer2021-05-201-23/+24
| |
* | Merge #8897bors[bot]2021-05-201-0/+14
|\ \ | | | | | | | | | | | | | | | | | | | | | 8897: minor: Don't compare ast::Visibility by stringifying r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Tobias Wirth <[email protected]>
| * | Don't compare ast::Visibility by stringifyingLukas Tobias Wirth2021-05-201-0/+14
| | |
* | | Update outdated auto-import documentationLukas Tobias Wirth2021-05-201-9/+8
|/ /
* | Merge #8873bors[bot]2021-05-201-2/+6
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 8873: Implement import-granularity guessing r=matklad a=Veykril This renames our `MergeBehavior` to `ImportGranularity` as rustfmt has it as the purpose of them are basically the same. `ImportGranularity::Preserve` currently has no specific purpose for us as we don't have an organize imports assist yet, so it currently acts the same as `ImportGranularity::Item`. We now try to guess the import style on a per file basis and fall back to the user granularity setting if the file has no specific style yet or where it is ambiguous. This can be turned off by setting `import.enforceGranularity` to `true`. Closes https://github.com/rust-analyzer/rust-analyzer/issues/8870 Co-authored-by: Lukas Tobias Wirth <[email protected]>
| * Replace ImportGranularity::Guess with guessing boolean flagLukas Tobias Wirth2021-05-191-0/+1
| |
| * MergeBehavior -> ImportGranularityLukas Tobias Wirth2021-05-181-2/+5
| |
* | add_explicit_type respects `@` patternsDawer2021-05-191-5/+20
|/
* Extract function assist will add async if requiredJamie Cunliffe2021-05-171-2/+63
| | | | | The extract function assist will check for an AWAIT_EXPR in the body and if found, will add async to the generated function.
* Merge #8845bors[bot]2021-05-161-12/+275
|\ | | | | | | | | | | | | | | 8845: Generate the impl block via generate_trait_impl_text_from_impl r=Veykril a=hi-rustin Try to close https://github.com/rust-analyzer/rust-analyzer/issues/8827 Co-authored-by: hi-rustin <[email protected]>
| * Remove attrshi-rustin2021-05-151-5/+1
| |
| * Address comments and add more testshi-rustin2021-05-151-25/+249
| | | | | | | | | | | | Fix tests Fmt code
| * Generate the impl block via generate_trait_impl_texthi-rustin2021-05-151-2/+45
| |
* | internal: use standard test styleAleksey Kladov2021-05-161-304/+305
| |
* | internal: use mutable trees when filling match armsAleksey Kladov2021-05-161-8/+20
| |
* | minor: use uniform namesAleksey Kladov2021-05-1612-30/+29
| |
* | Merge #8813bors[bot]2021-05-163-2/+30
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | 8813: Get some more array lengths! r=lf- a=lf- This is built on #8799 and thus contains its changes. I'll rebase it onto master when that one gets merged. It adds support for r-a understanding the length of: * `let a: [u8; 2] = ...` * `let a = b"aaa"` * `let a = [0u8; 4]` I have added support for getting the values of byte strings, which was not previously there. I am least confident in the correctness of this part and it probably needs some more tests, as we currently have only one test that exercised that part (!). Fixes #2922. Co-authored-by: Jade <[email protected]>
| * Add more tests, refactor array lengths/consteval workJade2021-05-141-0/+28
| | | | | | | | | | | | | | | | | | | | | | Fix #2922: add unknown length as a condition for a type having unknown. Incorporate reviews: * Extract some of the const evaluation workings into functions * Add fixmes on the hacks * Add tests for impls on specific array lengths (these work!!! 😁) * Add tests for const generics (indeed we don't support it yet)
| * Support length for ByteStringsJade2021-05-132-2/+2
| | | | | | | | I am not confident that my added byte string parsing is right.
* | internal: use more mutable APIsAleksey Kladov2021-05-141-18/+16
| |
* | internal: use standard style for testsAleksey Kladov2021-05-141-54/+99
| |
* | internal: rewrite assoc item manipulaion to use mutable treesAleksey Kladov2021-05-143-14/+16
| |
* | Merge #8814bors[bot]2021-05-131-5/+33
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 8814: fix: Keep doc comments and outer attrs on "Move module to file" assist r=Veykril a=Jesse-Bakker Fixes #8804 Co-authored-by: Jesse Bakker <[email protected]>
| * | fix: Keep doc comments and outer attrs on "Move module to file" assistJesse Bakker2021-05-131-5/+33
| | |
* | | Merge #8820bors[bot]2021-05-131-0/+26
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8820: fix: Return absolute paths in find_path if crate start is ambiguous r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | Return absolute paths in find_path if crate start is ambiguousLukas Wirth2021-05-131-0/+26
| | | |
* | | | Corrected minor typo on line 20mixio2021-05-131-1/+1
| |_|/ |/| |
* | | Merge #8802bors[bot]2021-05-121-9/+126
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | 8802: Keep comments and attrs when extracting struct from enum variant r=Veykril a=DropDemBits Fixes #6730 Still unsure if existing visibilities of fields should be forced to pub (which is what was previously done), or if it's okay to keep it in the extracted struct. Co-authored-by: DropDemBits <[email protected]>
| * | Keep comments and attrs when extracting struct from enum variantDropDemBits2021-05-111-9/+126
| | |
* | | Merge #8800bors[bot]2021-05-111-16/+34
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | 8800: feat: Make "pull assignments up" assist work in more cases r=Jesse-Bakker a=Jesse-Bakker Fixes #8771 Co-authored-by: Jesse Bakker <[email protected]>
| * | Make "pull assignments up" assist work in more casesJesse Bakker2021-05-111-16/+34
| | |
* | | Give MergeBehaviour variants better namesLukas Wirth2021-05-102-3/+3
| |/ |/|
* | simplifyAleksey Kladov2021-05-101-12/+9
| |
* | internal: introduce `ast::make::ext` module with common shortcutsAleksey Kladov2021-05-0911-70/+48
| | | | | | | | | | | | | | | | | | | | There's a tension between keeping a well-architectured minimal orthogonal set of constructs, and providing convenience functions. Relieve this pressure by introducing an dedicated module for non-orthogonal shortcuts. This is inspired by the django.shortcuts module which serves a similar purpose architecturally.
* | internal: fix make APIAleksey Kladov2021-05-093-36/+18
| |
* | internal: rewrite **Repalce impl Trait** assist to mutable syntax treesAleksey Kladov2021-05-091-11/+13
| |
* | cleanupsAleksey Kladov2021-05-093-5/+6
| |
* | cleanupsAleksey Kladov2021-05-093-15/+23
| |
* | minor: fix test styleAleksey Kladov2021-05-091-55/+31
| |
* | Merge #8773bors[bot]2021-05-081-1/+1
|\ \ | |/ |/| | | | | | | | | | | 8773: fix: Correctly support SelfType when searching for usages r=Veykril a=Veykril Fixes #7443 Co-authored-by: Lukas Wirth <[email protected]>
| * Correctly support SelfType when searching for usagesLukas Wirth2021-05-081-1/+1
| |