Skip to content

Commit 269cb57

Browse files
committed
rustdoc-search: fix bugs when unboxing and reordering combine
1 parent 9ccb217 commit 269cb57

File tree

6 files changed

+376
-236
lines changed

6 files changed

+376
-236
lines changed

src/librustdoc/html/static/js/search.js

+275-235
Large diffs are not rendered by default.

tests/rustdoc-js-std/option-type-signatures.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// ignore-order
2+
13
const FILTER_CRATE = "std";
24

35
const EXPECTED = [
@@ -36,8 +38,9 @@ const EXPECTED = [
3638
],
3739
},
3840
{
39-
'query': 'option<t>, option<u> -> option<t, u>',
41+
'query': 'option<t>, option<u> -> option<t>',
4042
'others': [
43+
{ 'path': 'std::option::Option', 'name': 'and' },
4144
{ 'path': 'std::option::Option', 'name': 'zip' },
4245
],
4346
},
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// ignore-order
2+
3+
const FILTER_CRATE = "std";
4+
5+
const EXPECTED = [
6+
{
7+
'query': 'vec::intoiter<T> -> [T]',
8+
'others': [
9+
{ 'path': 'std::vec::IntoIter', 'name': 'as_slice' },
10+
{ 'path': 'std::vec::IntoIter', 'name': 'as_mut_slice' },
11+
{ 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
12+
],
13+
},
14+
{
15+
'query': 'vec::intoiter<T> -> []',
16+
'others': [
17+
{ 'path': 'std::vec::IntoIter', 'name': 'as_slice' },
18+
{ 'path': 'std::vec::IntoIter', 'name': 'as_mut_slice' },
19+
{ 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
20+
],
21+
},
22+
];

tests/rustdoc-js/generics-match-ambiguity.js

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ const EXPECTED = [
7979
{ 'path': 'generics_match_ambiguity', 'name': 'baac' },
8080
{ 'path': 'generics_match_ambiguity', 'name': 'baaf' },
8181
{ 'path': 'generics_match_ambiguity', 'name': 'baag' },
82+
{ 'path': 'generics_match_ambiguity', 'name': 'baah' },
8283
],
8384
},
8485
{

tests/rustdoc-js/generics-unbox.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// exact-check
2+
3+
const EXPECTED = [
4+
{
5+
'query': 'Inside<T> -> Out1<T>',
6+
'others': [
7+
{ 'path': 'generics_unbox', 'name': 'alpha' },
8+
],
9+
},
10+
{
11+
'query': 'Inside<T> -> Out3<T>',
12+
'others': [
13+
{ 'path': 'generics_unbox', 'name': 'beta' },
14+
{ 'path': 'generics_unbox', 'name': 'gamma' },
15+
],
16+
},
17+
{
18+
'query': 'Inside<T> -> Out4<T>',
19+
'others': [
20+
{ 'path': 'generics_unbox', 'name': 'beta' },
21+
{ 'path': 'generics_unbox', 'name': 'gamma' },
22+
],
23+
},
24+
{
25+
'query': 'Inside<T> -> Out3<U, T>',
26+
'others': [
27+
{ 'path': 'generics_unbox', 'name': 'beta' },
28+
{ 'path': 'generics_unbox', 'name': 'gamma' },
29+
],
30+
},
31+
{
32+
'query': 'Inside<T> -> Out4<U, T>',
33+
'others': [
34+
{ 'path': 'generics_unbox', 'name': 'beta' },
35+
{ 'path': 'generics_unbox', 'name': 'gamma' },
36+
],
37+
},
38+
];

tests/rustdoc-js/generics-unbox.rs

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
pub struct Out<A, B = ()> {
2+
a: A,
3+
b: B,
4+
}
5+
6+
pub struct Out1<A, const N: usize> {
7+
a: [A; N],
8+
}
9+
10+
pub struct Out2<A, const N: usize> {
11+
a: [A; N],
12+
}
13+
14+
pub struct Out3<A, B> {
15+
a: A,
16+
b: B,
17+
}
18+
19+
pub struct Out4<A, B> {
20+
a: A,
21+
b: B,
22+
}
23+
24+
pub struct Inside<T>(T);
25+
26+
pub fn alpha<const N: usize, T>(_: Inside<T>) -> Out<Out1<T, N>, Out2<T, N>> {
27+
loop {}
28+
}
29+
30+
pub fn beta<T, U>(_: Inside<T>) -> Out<Out3<T, U>, Out4<U, T>> {
31+
loop {}
32+
}
33+
34+
pub fn gamma<T, U>(_: Inside<T>) -> Out<Out3<U, T>, Out4<T, U>> {
35+
loop {}
36+
}

0 commit comments

Comments
 (0)