aboutsummaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Fix assert_never invoking assert_alwaysLukas Wirth2021-01-141-1/+1
|
* Group file source edits by FileIdLukas Wirth2021-01-1415-176/+184
|
* Merge #7271bors[bot]2021-01-1430-253/+28
|\ | | | | | | | | | | | | | | | | 7271: prepare to publish el libro de arena r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * prepare to publish el libro de arenaAleksey Kladov2021-01-1430-253/+28
| |
* | Merge #7270bors[bot]2021-01-147-7/+67
|\ \ | |/ |/| | | | | | | | | | | | | 7270: Introduce more appropriate assertion mechanism r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Introduce more appropriate assertion mechanismAleksey Kladov2021-01-147-7/+67
| | | | | | | | | | | | | | rust-analyzer is a long-running program, so we *should* handle assertion failures. See also https://www.sqlite.org/assert.html.
* | Merge #7266bors[bot]2021-01-144-25/+26
|\| | | | | | | | | | | | | | | | | 7266: Make printin the backtrace more convenient r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Make printin the backtrace more convenientAleksey Kladov2021-01-144-25/+26
| |
* | Merge #7265bors[bot]2021-01-141-0/+31
|\| | | | | | | | | | | | | | | | | 7265: Add a test for #7110 r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Add a test for #7110Aleksey Kladov2021-01-141-0/+31
| |
* | Merge #7264bors[bot]2021-01-141-1/+1
|\ \ | |/ |/| | | | | | | | | | | 7264: Use --workspace when loading extern resources r=edwin0cheng a=chinedufn https://github.com/rust-analyzer/rust-analyzer/issues/5040#issuecomment-759853153 Co-authored-by: Chinedu Francis Nwafili <[email protected]>
| * Use --workspace when loading extern resourcesChinedu Francis Nwafili2021-01-141-1/+1
| | | | | | https://github.com/rust-analyzer/rust-analyzer/issues/5040#issuecomment-759853153
* | Merge #7211bors[bot]2021-01-142-4/+35
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 7211: Fixed expr meta var after path colons in mbe r=matklad a=edwin0cheng Fixes #7207 Added `L_DOLLAR` in `ITEM_RECOVERY_SET` , but I don't know whether it is a good idea. r? @matklad Co-authored-by: Edwin Cheng <[email protected]>
| * Fixed expr meta var after path colons in mbeEdwin Cheng2021-01-102-4/+35
| |
* | Merge #7257bors[bot]2021-01-146-4/+321
|\ \ | | | | | | | | | | | | | | | | | | | | | 7257: vfs documentation r=matklad a=arnaudgolfouse This documents every item in the `vfs` crate, except for a few private, windows-specific items. Co-authored-by: Arnaud <[email protected]>
| * | Document vfs private itemsArnaud2021-01-125-2/+117
| | |
| * | Document vfs public itemsArnaud2021-01-125-2/+204
| | |
* | | Merge #7110bors[bot]2021-01-143-4/+10
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7110: Deduplicate macros when offering completion r=matklad a=AdnoC Closes https://github.com/rust-analyzer/rust-analyzer/issues/7081 When iterating over the names within the `hir_def::resolver::Scope` for a module, track what macros are in the `hir_def::item_scope::ItemScope::legacy_macros` collection for the module. When iterating over names from the prelude, do not proccess the name if it had been in the `legacy_macros` collection. This is implemented with a `FxHashSet` in the `Scope::process_names` function that is populated when iterating over `legacy_macros` and checked when iterating over the prelude. Alternative implementation could instead query the `legacy_macros` `FxHashMap` directly when processing names in the prelude. Also, I'd like to add a test for this, but I'm not sure where it could be added. Co-authored-by: AdnoC <[email protected]>
| * | | we can have one less call to name.clone()AdnoC2020-12-311-2/+3
| | | |
| * | | deduplicate macro completions from legacy macros and preludeAdnoC2020-12-313-4/+9
| | | |
* | | | Merge #7260bors[bot]2021-01-146-117/+252
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7260: Render Fn* trait objects and impl types as rust does r=matklad a=Veykril Also fixes raw ptr impl types being rendered ambiguously with multiple predicates. This moves out the `FamousDefs::Fixture` into its own file as well, cause I figured it is big enough to get its own file at this point + we also get highlighting this way when editing it. Fixes #3012 Co-authored-by: Lukas Wirth <[email protected]>
| * | | | Render Fn* trait objects and impl types as rust doesLukas Wirth2021-01-135-29/+132
| | | | |
| * | | | Move FamousDefs fixture out into its own fileLukas Wirth2021-01-122-88/+120
| | |/ / | |/| |
* | | | Sort impls by trait definitionFisher Darling2021-01-133-0/+238
| | | | | | | | | | | | | | | | Closes #6110
* | | | Merge #7263bors[bot]2021-01-132-15/+3
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7263: Use upstream TextSize API r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Use upstream TextSize APIAleksey Kladov2021-01-132-15/+3
| | | | |
* | | | | Merge #7220bors[bot]2021-01-133-14/+178
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7220: same level folder rename for will_rename_files r=kjeremy a=ShuiRuTian use tricky way to support folder rename. Another step after #7009 and for #4471 Co-authored-by: ShuiRuTian <[email protected]> Co-authored-by: Song Gao <[email protected]>
| * | | | fix windows test.ShuiRuTian2021-01-131-2/+2
| | | | |
| * | | | unwrap.ShuiRuTian2021-01-131-2/+2
| | | | |
| * | | | skip slow tests.ShuiRuTian2021-01-121-3/+4
| | | | |
| * | | | use path rather than hard code.ShuiRuTian2021-01-121-4/+4
| | | | |
| * | | | fix and add tests.ShuiRuTian2021-01-122-8/+142
| | | | |
| * | | | formatShuiRuTian2021-01-111-3/+5
| | | | |
| * | | | fix as suggestion.ShuiRuTian2021-01-111-9/+5
| | | | |
| * | | | Update crates/rust-analyzer/src/handlers.rsSong Gao2021-01-111-3/+1
| | | | | | | | | | | | | | | Co-authored-by: Jeremy Kolb <[email protected]>
| * | | | Update crates/rust-analyzer/src/handlers.rsSong Gao2021-01-111-4/+2
| | | | | | | | | | | | | | | Co-authored-by: Jeremy Kolb <[email protected]>
| * | | | move logic from client to server.ShuiRuTian2021-01-111-1/+9
| | | | |
| * | | | update rs formatShuiRuTian2021-01-101-1/+2
| | | | |
| * | | | fix condition.ShuiRuTian2021-01-101-1/+1
| | | | |
| * | | | fix issue.ShuiRuTian2021-01-101-14/+14
| | | | |
| * | | | beta version for folder renameShuiRuTian2021-01-092-4/+22
| | | | |
| * | | | support folder rename for initial request.ShuiRuTian2021-01-081-8/+16
| | | | |
* | | | | Merge #7262bors[bot]2021-01-133-14/+10
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7262: Don't show internal server error on rename r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | | Don't show internal server error on renameAleksey Kladov2021-01-133-14/+10
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Doesn't quite work due to https://github.com/microsoft/vscode-languageserver-node/issues/730 Note that this intentionally removes `impl std::Error for RenameError` -- we nether want to blindly bubble the rename error.
* | | | | Rename FileReferences -> UsageSearchResultLukas Wirth2021-01-123-15/+14
| | | | |
* | | | | Ensure uniqueness of file ids in reference search via hashmapLukas Wirth2021-01-129-121/+122
| | | | |
* | | | | Group references by FileIdLukas Wirth2021-01-1210-256/+324
|/ / / /
* | | | Improve analysis stats legibilityAleksey Kladov2021-01-111-20/+17
| | | |
| | | |
| \ \ \
| \ \ \
| \ \ \
| \ \ \
| \ \ \
*-----. \ \ \ Merge #7051 #7219 #7245 #7246bors[bot]2021-01-116-92/+169
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7051: Check dbg! macro in tidy_test r=matklad a=edwin0cheng Same as `check_todo` but for dbg! macro r? @matklad 7219: Refactor rename name checking r=matklad a=Veykril Improves the user facing error messages a bit and prevents renaming to `_` when the name is referenced as this would change source to not compile anymore since `_` is only a pattern, not a proper identifier. 7245: Encourage gifs r=matklad a=matklad bors r+ 🤖 7246: Unfreeze cargo_metadata r=matklad a=kjeremy It now pulls in a newer version of semver-parser. This does add a dependency on `cargo-platform` in the interest of correctness. Co-authored-by: Edwin Cheng <[email protected]> Co-authored-by: Lukas Wirth <[email protected]> Co-authored-by: Aleksey Kladov <[email protected]> Co-authored-by: kjeremy <[email protected]>
| | | | * | | | Unfreeze cargo_metadatakjeremy2021-01-113-3/+3
| | | |/ / / / | | | | | | | | | | | | | | | | | | | | | It now pulls in a newer version of semver-parser.