Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
44612c5
docs: add documentation for find_all_refs constructor search (#10725)
vremyavnikuda May 25, 2025
1e8eacd
fix: the lines are formatted according to clippy
vremyavnikuda May 25, 2025
693ff34
fix: the lines are formatted according to clippy
vremyavnikuda May 25, 2025
57707c2
fix: formated to clippy
vremyavnikuda May 26, 2025
eb0a3c0
Update SGX maintainers
raoulstrackx May 28, 2025
430f75a
docs:deleting duplicate documentation
vremyavnikuda May 28, 2025
d2bc368
fix: Recognize salsa cycles in `thread_result_to_response`
Veykril May 28, 2025
f06e376
Merge pull request #19888 from Veykril/push-wylsryzpnnop
Veykril May 29, 2025
087cfe3
fix: Fix import insertion not being fully cfg aware
Veykril May 28, 2025
23738b5
Merge pull request #19890 from Veykril/push-kzzntrpllsqx
Veykril May 29, 2025
8d958aa
Merge pull request #19861 from vremyavnikuda/docs/find-all-refs-const…
Veykril May 30, 2025
1b809b7
Add some more `hir_expand::files` conversions
Veykril May 30, 2025
7ad2c36
ci: use free runner for aarch64-gnu-llvm-19-1 PR job
marcoieni May 30, 2025
1383bca
internal: Restructure some semantics APIs for virtual macro files
Veykril May 30, 2025
deeb464
Merge pull request #19896 from Veykril/push-qyutrlxyznum
Veykril May 30, 2025
ed508c7
refactor: Remove unncessary duplication in highlight_related
Veykril May 31, 2025
9c45a45
Merge pull request #19898 from Veykril/push-ykumpuwmuvmu
Veykril May 31, 2025
1b9fb33
Account for `Generate` actions when filtering the allowed ones
SomeoneToIgnore May 31, 2025
cac7468
Merge pull request #19899 from SomeoneToIgnore/generate-actions
Veykril May 31, 2025
2428070
fix: Fix manual not containing diagnostics documentation
Veykril May 31, 2025
01a1908
Merge pull request #19900 from Veykril/push-zurosouxqxzz
Veykril May 31, 2025
861ee47
ci: switch `x86_64-msvc-{1,2}` back to Windows Server 2025 images
jieyouxu Jun 1, 2025
1e169d8
Optionally don't steal the THIR
Nadrieril Jun 1, 2025
9b94cae
allow macro_use as first segment
bvanjoi Jun 2, 2025
aba70e8
Add missing `dyn` keywords to tests that do not test for them
Veykril Jun 2, 2025
7167e7c
Fix false positive lint error from no_implicit_prelude attr
chenyukang Jun 2, 2025
d3639e5
Rollup merge of #141767 - marcoieni:free-pr-job, r=Kobzol
matthiaskrgr Jun 2, 2025
1961b51
Rollup merge of #141861 - jieyouxu:windows-server-2025-20250527, r=Ko…
matthiaskrgr Jun 2, 2025
2eb684c
Rollup merge of #141865 - Nadrieril:dont-steal-thir, r=oli-obk
matthiaskrgr Jun 2, 2025
e35a985
Rollup merge of #141881 - lnicola:sync-from-ra, r=lnicola
matthiaskrgr Jun 2, 2025
cdb674b
Rollup merge of #141884 - bvanjoi:issue-140255, r=petrochenkov
matthiaskrgr Jun 2, 2025
f0b7060
Rollup merge of #141885 - raoulstrackx:raoul/rte-484-update_sgx_maint…
matthiaskrgr Jun 2, 2025
6559a26
Rollup merge of #141889 - ferrocene:lw/missing-dyn-kw, r=petrochenkov
matthiaskrgr Jun 2, 2025
93c8c49
Rollup merge of #141892 - chenyukang:yukang-fix-141785-extern-crate, …
matthiaskrgr Jun 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: the lines are formatted according to clippy
  • Loading branch information
vremyavnikuda committed May 26, 2025
commit 693ff34702c2eb06bca073f2f7d3073da36c297b
2 changes: 1 addition & 1 deletion src/tools/rust-analyzer/crates/ide/src/references.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ pub struct Declaration {
/// - `(` after tuple struct/variant: Shows tuple literal initializations
/// - `;` after unit struct: Shows unit literal initializations
/// - Type name in definition: Shows all initialization usages
/// In these cases, other kinds of references (like type references) are filtered out.
/// In these cases, other kinds of references (like type references) are filtered out.
pub(crate) fn find_all_refs(
sema: &Semantics<'_, RootDatabase>,
position: FilePosition,
Expand Down