Lukas Wirth
4f75e0f910
Remove completion limit for trait importing method completions
2024-01-05 12:03:08 +01:00
bors
11b0126679
Auto merge of #16267 - Veykril:import-map-fix, r=Veykril
...
internal: Deduplicate some code
2024-01-05 10:43:52 +00:00
Lukas Wirth
d60638e5e6
Deduplicate some code
2024-01-05 11:34:18 +01:00
bors
28e4a9a205
Auto merge of #16262 - paul-jewell:gentoo-instruction-tuneup, r=lnicola
...
Further tuning of the Gentoo installation instructions.
Based on feedback from the Gentoo repository maintainer, addition of the possibility to install rust-analyzer via rustup.
2024-01-05 10:32:33 +00:00
Laurențiu Nicola
03ec0087a0
Tweak wording a little more
2024-01-05 10:24:39 +02:00
roife
fbdc59c54a
internal: remove unnecessary path_tranform on type_gen_args in generate_delegate_trait.
2024-01-05 13:59:44 +08:00
roife
bf0c4acef4
internal: refactor generate_delegate_trait and add comments
2024-01-05 13:59:34 +08:00
davidsemakula
7c259a0300
fix typos and update descriptions
2024-01-05 01:56:06 +03:00
Paul Jewell
443787fe6a
Added reference to the binaries available from GitHub.
...
In addition to installing from source.
2024-01-04 21:37:07 +00:00
Paul Jewell
0d6ec9c987
Further tuning of the Gentoo installation instructions.
...
based on feedback from the Gentoo repository maintainer, addition of
the possibility to install rust-analyzer via rustup.
2024-01-04 21:16:03 +00:00
bors
c84352a346
Auto merge of #16261 - Veykril:import-map-fix, r=Veykril
...
internal: Move query limits to the caller
Prior we calculated up to `limit` entries from a query, then filtered from that leaving us with less entries than the limit in some cases (which might give odd completion behavior due to items disappearing). This changes it so we filter before checking the limit.
2024-01-04 18:27:38 +00:00
Lukas Wirth
2666349392
Remove limit from symbol_index::Query
2024-01-04 19:20:10 +01:00
Lukas Wirth
0af780ea3e
Fix symbol_index::Query::search_maps not adhering to case-sensitivity correctly
2024-01-04 19:12:56 +01:00
davidsemakula
f098123122
update docs/dev/guide.md based on 2024-01-01 release
2024-01-04 20:57:50 +03:00
Johann Hemmann
f8ff4fb75b
Conditionally include use_name_in_title and cfg
2024-01-04 18:47:08 +01:00
bors
a795f4836c
Auto merge of #16260 - Urhengulas:ide-diagnostics-refactor-tests, r=lnicola
...
internal: Replace only occurence of `check_expect` with `check_diagnostics`
Part of https://github.com/rust-lang/rust-analyzer/issues/14268 .
2024-01-04 17:24:57 +00:00
Johann Hemmann
03b1ecd90d
Replace only occurence of check_expect with check_diagnostics
2024-01-04 18:20:38 +01:00
Lukas Wirth
c3a29e5528
Remove limit from import_map::Query
2024-01-04 18:12:25 +01:00
Johann Hemmann
61b552124a
Move check_expect and check_expect_clear_loc to inlayhints::chaining
2024-01-04 17:32:16 +01:00
bors
e88788ea70
Auto merge of #16258 - Veykril:import-map-fix, r=Veykril
...
internal: Rewrite `ImportMap::search_dependencies`
Second attempt, this time with a lot of perf improvements
Fixes https://github.com/rust-lang/rust-analyzer/issues/16080
Fixes https://github.com/rust-lang/rust-analyzer/issues/16074
Fixes https://github.com/rust-lang/rust-analyzer/issues/15845
The main bottleneck for flyimport completions are now import path calculation and completion item rendering.
2024-01-04 16:29:25 +00:00
Johann Hemmann
594e0a5de6
Only compare range and label
2024-01-04 17:29:20 +01:00
Lukas Wirth
9b3052104c
internal: Rewrite ImportMap::search_dependencies
2024-01-04 17:26:00 +01:00
Johann Hemmann
dbeb27e05d
Refactor check
2024-01-04 16:10:34 +01:00
Johann Hemmann
971fc1b3e8
Also compare navigation targets for tests
2024-01-04 15:21:57 +01:00
Johann Hemmann
9bc005a3bf
Only iterate through runnables once
2024-01-04 15:14:05 +01:00
Johann Hemmann
3f8083fc81
Only compare navigation targets
2024-01-04 15:14:05 +01:00
Johann Hemmann
f3770c14cf
Compare test ids instead of names, seems more robust
2024-01-04 15:14:05 +01:00
Johann Hemmann
e9632bd48b
Only compare test name
2024-01-04 15:14:05 +01:00
Lukas Wirth
79fa976864
Set proc-macro-test/sysroot-abi with proc-macro-srv/sysroot-abi
2024-01-04 15:12:57 +01:00
bors
a2aab001a7
Auto merge of #16241 - Nilstrieb:sysrooting, r=Veykril
...
Give a userful error when rustc cannot be found in explicit sysroot
Somehow r-a believed that my sysroot was something weird with no rustc. Probably a me issue, but it was impossible to diagnose since r-a just gave me a plain "No such file or directory". Adding this error makes it clear what happened and allows diagnosing the problem.
2024-01-04 14:10:57 +00:00
bors
7f75815ca2
Auto merge of #16252 - Urhengulas:dont-assert-debug, r=Veykril
...
internal: Switch to `expected.assert_eq` for `ide` tests
This PR switches from `assert_debug_eq` to `assert_eq` and only compares parts of the result and not the whole. The aim is to only compare parts which are relevant to the test and also make it more readable.
Part of #14268 .
## Questions
- [x] Can I use `Vec`? If not, what is the alternative?
I assume I cannot because of: c3a00b5468/docs/dev/architecture.md (L413)
- [x] Should I group it by file, as proposed by Lukas?
```
file_id 1:
source_file_edits:
- Indel { insert: "foo2", delete: 4..7 }
file_id 2:
file_system_edits:
MoveFile AnchoredPathBuf { anchor: FileId(2), path: "foo2.rs", }
```
- [x] Is it okay to ignore `CreateFile` events? They do not have a FileId, which would be problematic, but they do not occur in the existing tests, so I marked them as `unreachable!()` so far.
2024-01-04 13:40:52 +00:00
Johann Hemmann
656ac104c9
Do not extract FileId for file_system_edits
2024-01-04 14:29:41 +01:00
Johann Hemmann
ea675ab888
Insert newline at the end
2024-01-04 14:01:03 +01:00
Johann Hemmann
f2b872a3c5
Switch to Vec, because we do want to have duplicate keys
2024-01-04 14:01:03 +01:00
Johann Hemmann
dea149d733
Switch to BTreeMap for stable ordering
2024-01-04 14:01:03 +01:00
Johann Hemmann
05a3c2ff20
Make filtering a function
2024-01-04 14:01:03 +01:00
Johann Hemmann
d1f4171bb6
Refactor to iterators
2024-01-04 14:01:03 +01:00
Johann Hemmann
084acc287a
Extract relevant information into hashmaps
2024-01-04 14:01:02 +01:00
bors
c3a00b5468
Auto merge of #16251 - lnicola:span-description, r=lnicola
...
Add description to span crate manifest
CC https://github.com/rust-lang/rust-analyzer/actions/runs/7408827766/job/20157836624
2024-01-04 11:28:11 +00:00
Laurențiu Nicola
688911757e
Add description to span crate manifest
2024-01-04 13:27:32 +02:00
bors
95e047e4ac
Auto merge of #16248 - Veykril:proc-macro-test, r=lnicola
...
internal: Add proc-macro-test crate back to the main workspace
Should fix https://github.com/rust-lang/rust-analyzer/issues/16194
2024-01-04 11:00:33 +00:00
bors
8356bc9008
Auto merge of #16249 - lnicola:sync-from-rust, r=lnicola
...
internal: Sync from rust
2024-01-04 10:47:48 +00:00
Laurențiu Nicola
a66777cc71
Merge branch 'master' into sync-from-rust
2024-01-04 12:44:34 +02:00
Laurențiu Nicola
adf052c2ba
Merge commit '426d2842c1f0e5cc5e34bb37c7ac3ee0945f9746' into sync-from-rust
2024-01-04 12:44:20 +02:00
Lukas Wirth
751d9d11e0
Add proc-macro-test crate back to the main workspace
2024-01-04 11:09:45 +01:00
Lukas Wirth
8390d2aca3
Set sysroot-abi flag for proc-macro-cli when in-rust-tree is set
2024-01-04 11:02:23 +01:00
Lukas Wirth
d480525ce8
Add extern crate rustc_driver to proc-macro-srv-cli
2024-01-04 11:02:23 +01:00
Lukas Wirth
ab2286935d
Imply sysroot-abi feature when in-rust-tree is set
2024-01-04 11:02:23 +01:00
Lukas Wirth
b83f487d10
Set the in-rust-tree
` feature for all rust-analyzer{-proc-macro-srv} steps
2024-01-04 11:02:20 +01:00
Nilstrieb
f0f74486bf
Give a userful error when rustc cannot be found in explicit sysroot
...
Somehow r-a believed that my sysroot was something weird with no rustc.
Probably a me issue, but it was impossible to diagnose since r-a just
gave me a plain "No such file or directory". Adding this error makes it
clear what happened and allows diagnosing the problem.
2024-01-03 21:01:06 +01:00