Skip to content

Commit f817d33

Browse files
committed
rustdoc-search: fix where clause highlight with dup generics
Essentially, the unifier only adds generics to a parameter when a part of its where clause is highlighted. To make that work, the formatter can ignore the empties.
1 parent bccb9f7 commit f817d33

File tree

4 files changed

+24
-17
lines changed

4 files changed

+24
-17
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,9 @@ function initSearch(rawSearchIndex) {
15721572
for (const nested of fnType.generics) {
15731573
writeFn(nested, where);
15741574
}
1575-
whereClause.set(fnParamNames[-1 - fnType.id], where);
1575+
if (where.length > 0) {
1576+
whereClause.set(fnParamNames[-1 - fnType.id], where);
1577+
}
15761578
} else {
15771579
if (fnType.ty === TY_PRIMITIVE) {
15781580
if (fnType.id === typeNameIdOfArray || fnType.id === typeNameIdOfSlice ||
@@ -2913,7 +2915,7 @@ function initSearch(rawSearchIndex) {
29132915
sorted_returned,
29142916
sorted_others,
29152917
parsedQuery);
2916-
await handleAliases(ret, parsedQuery.original.replace(/"/g, ""),
2918+
await handleAliases(ret, parsedQuery.userQuery.replace(/"/g, ""),
29172919
filterCrates, currentCrate);
29182920
await Promise.all([ret.others, ret.returned, ret.in_args].map(async list => {
29192921
const descs = await Promise.all(list.map(result => {

tests/rustdoc-js-std/parser-errors.js

-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ const PARSED = [
195195
query: "a:b",
196196
elems: [],
197197
foundElems: 0,
198-
original: "a:b",
199198
returned: [],
200199
userQuery: "a:b",
201200
error: "Unknown type filter `a`",

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

+12
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,16 @@ const EXPECTED = [
1919
{ 'path': 'std::vec::IntoIter', 'name': 'next_chunk' },
2020
],
2121
},
22+
{
23+
'query': 'vec<Allocator> -> Box<[T]>',
24+
'others': [
25+
{
26+
'path': 'std::boxed::Box',
27+
'name': 'from',
28+
'displayType': '`Vec`<T, `A`> -> `Box`<`[T]`, A>',
29+
'displayMappedNames': `T = T`,
30+
'displayWhereClause': 'A: `Allocator`',
31+
},
32+
],
33+
},
2234
];

tests/rustdoc-js/non-english-identifier.js

+8-14
Original file line numberDiff line numberDiff line change
@@ -11,57 +11,54 @@ const PARSED = [
1111
}],
1212
returned: [],
1313
foundElems: 1,
14-
original: "中文",
1514
userQuery: "中文",
1615
error: null,
1716
},
1817
{
1918
query: '_0Mixed中英文',
2019
elems: [{
21-
name: "_0mixed中英文",
20+
name: "_0Mixed中英文",
2221
fullPath: ["_0mixed中英文"],
2322
pathWithoutLast: [],
2423
pathLast: "_0mixed中英文",
2524
generics: [],
2625
typeFilter: -1,
2726
}],
2827
foundElems: 1,
29-
original: "_0Mixed中英文",
3028
returned: [],
31-
userQuery: "_0mixed中英文",
29+
userQuery: "_0Mixed中英文",
3230
error: null,
3331
},
3432
{
3533
query: 'my_crate::中文API',
3634
elems: [{
37-
name: "my_crate::中文api",
35+
name: "my_crate::中文API",
3836
fullPath: ["my_crate", "中文api"],
3937
pathWithoutLast: ["my_crate"],
4038
pathLast: "中文api",
4139
generics: [],
4240
typeFilter: -1,
4341
}],
4442
foundElems: 1,
45-
original: "my_crate::中文API",
4643
returned: [],
47-
userQuery: "my_crate::中文api",
44+
userQuery: "my_crate::中文APIi",
4845
error: null,
4946
},
5047
{
5148
query: '类型A,类型B<约束C>->返回类型<关联类型=路径::约束D>',
5249
elems: [{
53-
name: "类型a",
50+
name: "类型A",
5451
fullPath: ["类型a"],
5552
pathWithoutLast: [],
5653
pathLast: "类型a",
5754
generics: [],
5855
}, {
59-
name: "类型b",
56+
name: "类型B",
6057
fullPath: ["类型b"],
6158
pathWithoutLast: [],
6259
pathLast: "类型b",
6360
generics: [{
64-
name: "约束c",
61+
name: "约束C",
6562
fullPath: ["约束c"],
6663
pathWithoutLast: [],
6764
pathLast: "约束c",
@@ -71,15 +68,14 @@ const PARSED = [
7168
foundElems: 3,
7269
totalElems: 5,
7370
literalSearch: true,
74-
original: "类型A,类型B<约束C>->返回类型<关联类型=路径::约束D>",
7571
returned: [{
7672
name: "返回类型",
7773
fullPath: ["返回类型"],
7874
pathWithoutLast: [],
7975
pathLast: "返回类型",
8076
generics: [],
8177
}],
82-
userQuery: "类型a,类型b<约束c>->返回类型<关联类型=路径::约束d>",
78+
userQuery: "类型A,类型B<约束C>->返回类型<关联类型=路径::约束D>",
8379
error: null,
8480
},
8581
{
@@ -93,7 +89,6 @@ const PARSED = [
9389
typeFilter: 16,
9490
}],
9591
foundElems: 1,
96-
original: "my_crate 中文宏!",
9792
returned: [],
9893
userQuery: "my_crate 中文宏!",
9994
error: null,
@@ -102,7 +97,6 @@ const PARSED = [
10297
query: '非法符号——',
10398
elems: [],
10499
foundElems: 0,
105-
original: "非法符号——",
106100
returned: [],
107101
userQuery: "非法符号——",
108102
error: "Unexpected `—` after `号` (not a valid identifier)",

0 commit comments

Comments
 (0)