aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Implement prev sibling determination for `CompletionContext`Lukas Wirth2021-05-283-54/+114
|
* simplifyLukas Wirth2021-05-289-143/+140
|
* Merge #9028bors[bot]2021-05-283-51/+47
|\ | | | | | | | | | | | | | | 9028: only advertise range formatting support if enabled r=Veykril a=euclio Fixes #9009. Co-authored-by: Andy Russell <[email protected]>
| * only advertise range formatting support if enabledAndy Russell2021-05-273-51/+47
| |
* | Merge #9040bors[bot]2021-05-281-1/+5
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 9040: Don't label derive macros with their banged_name r=Veykril a=Veykril cc https://github.com/rust-analyzer/rust-analyzer/issues/7072#issuecomment-850396203 This doesn't fix it non builtin derives yet I think cause of a FIXME somewhere that doesn't categorize proc-macro derives as derives yet bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | Don't label derive macros with their banged_nameLukas Wirth2021-05-281-1/+5
| | |
* | | Merge #9038bors[bot]2021-05-282-0/+18
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9038: Folding range for return types r=Veykril a=MozarellaMan For issue #8957 ![return type fold](https://user-images.githubusercontent.com/48062697/119979082-5c62e100-bfb2-11eb-9729-1dea1ce74de1.gif) Co-authored-by: Ayomide Bamidele <[email protected]>
| * | | Test for correct amount of emitted foldsAyomide Bamidele2021-05-281-0/+2
| | | |
| * | | Folding range for return typesAyomide Bamidele2021-05-282-0/+16
| | | |
* | | | Merge #9037bors[bot]2021-05-281-17/+17
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | 9037: minor: Move runnable lenses below attributes r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | Move runnable lenses below attributesLukas Wirth2021-05-281-17/+17
|/ / /
* | | Merge #9036bors[bot]2021-05-281-7/+1
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 9036: Remove undocumented `TextDocumentSyncKind::Full` support r=matklad a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]>
| * | Remove undocumented `TextDocumentSyncKind::Full` supportLaurențiu Nicola2021-05-281-7/+1
|/ /
* | Merge #9033bors[bot]2021-05-282-4/+33
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 9033: Complete keywords in (Assoc)ItemList with leading attribute r=Veykril a=Veykril Fixes #7673 bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | Complete keywords in (Assoc)ItemList with leading attributeLukas Wirth2021-05-282-4/+33
| | |
* | | Merge #9032bors[bot]2021-05-283-14/+27
|\| | | | | | | | | | | | | | | | | | | | | | | | | | 9032: Only complete modules in empty use-statements r=Veykril a=Veykril bors r+ Part of #8518 Co-authored-by: Lukas Wirth <[email protected]>
| * | Only complete modules in empty use-statementsLukas Wirth2021-05-283-14/+27
| |/
* | Merge #9029bors[bot]2021-05-273-45/+125
|\ \ | |/ |/| | | | | | | | | | | 9029: minor: test that `ItemTree` makes `hir_def` queries syntax-independent r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * Test that `ItemTree` works as intendedJonas Schievink2021-05-271-1/+73
| |
| * Move hir_ty incremental test to its own fileJonas Schievink2021-05-272-44/+52
| |
* | Merge #9026bors[bot]2021-05-274-9/+58
|\ \ | |/ |/| | | | | | | | | | | 9026: Complete modules in assoc item lists r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * Complete modules in item listsLukas Wirth2021-05-273-4/+45
| |
| * Complete modules in assoc item listsLukas Wirth2021-05-273-5/+13
| |
* | Merge #9020bors[bot]2021-05-277-134/+198
|\| | | | | | | | | | | | | | | | | 9020: fix: Don't complete non-macro item paths in impls and modules r=Veykril a=Veykril Part of #8518 bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * Cleanup `ImmediateLocation` determinationLukas Wirth2021-05-275-115/+132
| |
| * Don't complete non-macro item paths in impls and modulesLukas Wirth2021-05-276-29/+76
| |
* | Merge #9024bors[bot]2021-05-276-17/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | 9024: internal: Don't store supertraits in ItemTree r=jonas-schievink a=lnicola Closes #9010 Co-authored-by: Laurențiu Nicola <[email protected]>
| * | Don't store supertraits in ItemTreeLaurențiu Nicola2021-05-276-17/+3
|/ /
* | Merge #8997bors[bot]2021-05-2712-241/+351
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8997: internal: stop expanding UseTrees during ItemTree lowering r=jonas-schievink a=jonas-schievink Closes https://github.com/rust-analyzer/rust-analyzer/issues/8908 Messy diff, but `ItemTree` lowering got simpler, since we now have a strict 1-to-1 mapping between `ast::Item` and `ModItem`. The most messy part is mapping a single `UseTree` back to its `ast::UseTree` counterpart for diagnostics, but I think the ad-hoc source map built during lowering does the job. Co-authored-by: Jonas Schievink <[email protected]>
| * | Drop `ignore` from doctestsJonas Schievink2021-05-271-3/+3
| | |
| * | Reduce memory usage a bitJonas Schievink2021-05-262-9/+14
| | |
| * | Clean up ItemTree lowering now that it's 1:1Jonas Schievink2021-05-261-53/+26
| | |
| * | Stop expanding UseTrees during ItemTree loweringJonas Schievink2021-05-2612-188/+320
| | |
* | | Merge #9022bors[bot]2021-05-271-1/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9022: internal: disable debuginfo afterall r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: disable debuginfo afterallAleksey Kladov2021-05-271-1/+5
| | | |
* | | | Merge #9021bors[bot]2021-05-271-6/+12
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | 9021: internal: explain the motivation behind early configuration r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | internal: explain the motivation behind early configurationAleksey Kladov2021-05-271-6/+12
|/ / /
* | | Merge #9005bors[bot]2021-05-273-6/+76
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9005: internal: Document semantic token tags r=matklad a=Veykril Closes #6457 Co-authored-by: Lukas Wirth <[email protected]>
| * | | Document semantic token tagsLukas Wirth2021-05-263-6/+76
| | | |
* | | | Merge #9019bors[bot]2021-05-277-36/+37
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | 9019: internal: simplify r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | simplifyLukas Wirth2021-05-277-36/+37
| | | |
* | | | Merge #9018bors[bot]2021-05-276-113/+140
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9018: Collapse more CompletionContext booleans into enums r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | simplifyLukas Wirth2021-05-272-18/+10
| | | |
| * | | Collapse more CompletionContext booleans into enumsLukas Wirth2021-05-276-98/+133
|/ / /
* | | Merge #9017bors[bot]2021-05-271-11/+8
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 9017: internal: Reduce the number of traits passed through chalk during applicable trait lookup r=SomeoneToIgnore a=SomeoneToIgnore Inherent traits can be omitted before trait solving, presumably slightly helping https://github.com/rust-analyzer/rust-analyzer/issues/7542 and slightly simplifying the code. Co-authored-by: Kirill Bulatov <[email protected]>
| * | | Exclude inherent traits more eagerlyKirill Bulatov2021-05-271-11/+8
| | | |
* | | | Merge #9016bors[bot]2021-05-263-41/+58
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 9016: Set `record_pat_syntax` more precisely in CompletionContext r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]>
| * | | Set `record_pat_syntax` more precisely in CompletionContextLukas Wirth2021-05-263-41/+58
| | | |
* | | | Merge #8995bors[bot]2021-05-264-22/+20
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8995: fix: Create tasks for all workspaces r=matklad a=SomeoneToIgnore Follow-up of https://github.com/rust-analyzer/rust-analyzer/pull/8955#discussion_r637897170 Before: <img width="593" alt="image" src="https://user-images.githubusercontent.com/2690773/119575267-712b5300-bdbf-11eb-833c-f688f7a7dd0f.png"> After: <img width="643" alt="image" src="https://user-images.githubusercontent.com/2690773/119575273-74264380-bdbf-11eb-8283-a78bbcb7346e.png"> This is the first time I've used multiple workspaces feature in VSCode, but so far looks like * opening detached files works * run and debug lens work * Rust Analyzer: Run action works * run task works and now shows tasks for all workspaces * there are no platform-specific changes involved Co-authored-by: Kirill Bulatov <[email protected]>
| * | | Create tasks for all workspacesKirill Bulatov2021-05-254-22/+20
| | |/ | |/|