Skip to content

Commit 19ff1f2

Browse files
authored
Rollup merge of rust-lang#108143 - notriddle:notriddle/filter-exclamation-macro, r=GuillaumeGomez
rustdoc: search by macro when query ends with `!` Related to rust-lang#96399 Note: the `never` type alias is tested in [`/tests/rustdoc-js-std/alias-3.js`](https://github.com/notriddle/rust/blob/08ad401633037cc226b3806a3c5f48c2f34703bf/tests/rustdoc-js-std/alias-3.js) ## Before ![image](https://user-images.githubusercontent.com/1593513/219504192-54cc0753-ff97-4a37-ad4a-8ae915181325.png) ## After ![image](https://user-images.githubusercontent.com/1593513/219504251-589a7e11-1e7b-4b7b-879d-1b564080017c.png)
2 parents f70045c + 96e6fb6 commit 19ff1f2

File tree

7 files changed

+137
-25
lines changed

7 files changed

+137
-25
lines changed

src/doc/rustdoc/src/how-to-read-rustdoc.md

+3
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ When typing in the search bar, you can prefix your search term with a type
8484
followed by a colon (such as `mod:`) to restrict the results to just that
8585
kind of item. (The available items are listed in the help popup.)
8686

87+
Searching for `println!` will search for a macro named `println`, just like
88+
searching for `macro:println` does.
89+
8790
### Changing displayed theme
8891

8992
You can change the displayed theme by opening the settings menu (the gear

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

+26-6
Original file line numberDiff line numberDiff line change
@@ -300,20 +300,21 @@ function initSearch(rawSearchIndex) {
300300
* @return {integer}
301301
*/
302302
function getIdentEndPosition(parserState) {
303+
const start = parserState.pos;
303304
let end = parserState.pos;
304-
let foundExclamation = false;
305+
let foundExclamation = -1;
305306
while (parserState.pos < parserState.length) {
306307
const c = parserState.userQuery[parserState.pos];
307308
if (!isIdentCharacter(c)) {
308309
if (c === "!") {
309-
if (foundExclamation) {
310+
if (foundExclamation !== -1) {
310311
throw new Error("Cannot have more than one `!` in an ident");
311312
} else if (parserState.pos + 1 < parserState.length &&
312313
isIdentCharacter(parserState.userQuery[parserState.pos + 1])
313314
) {
314315
throw new Error("`!` can only be at the end of an ident");
315316
}
316-
foundExclamation = true;
317+
foundExclamation = parserState.pos;
317318
} else if (isErrorCharacter(c)) {
318319
throw new Error(`Unexpected \`${c}\``);
319320
} else if (
@@ -326,16 +327,35 @@ function initSearch(rawSearchIndex) {
326327
if (!isPathStart(parserState)) {
327328
break;
328329
}
330+
if (foundExclamation !== -1) {
331+
if (start <= (end - 2)) {
332+
throw new Error("Cannot have associated items in macros");
333+
} else {
334+
// if start == end - 1, we got the never type
335+
// while the never type has no associated macros, we still
336+
// can parse a path like that
337+
foundExclamation = -1;
338+
}
339+
}
329340
// Skip current ":".
330341
parserState.pos += 1;
331-
foundExclamation = false;
332342
} else {
333343
throw new Error(`Unexpected \`${c}\``);
334344
}
335345
}
336346
parserState.pos += 1;
337347
end = parserState.pos;
338348
}
349+
// if start == end - 1, we got the never type
350+
if (foundExclamation !== -1 && start <= (end - 2)) {
351+
if (parserState.typeFilter === null) {
352+
parserState.typeFilter = "macro";
353+
} else if (parserState.typeFilter !== "macro") {
354+
throw new Error("Invalid search type: macro `!` and " +
355+
`\`${parserState.typeFilter}\` both specified`);
356+
}
357+
end = foundExclamation;
358+
}
339359
return end;
340360
}
341361

@@ -589,8 +609,8 @@ function initSearch(rawSearchIndex) {
589609
*
590610
* The supported syntax by this parser is as follow:
591611
*
592-
* ident = *(ALPHA / DIGIT / "_") [!]
593-
* path = ident *(DOUBLE-COLON ident)
612+
* ident = *(ALPHA / DIGIT / "_")
613+
* path = ident *(DOUBLE-COLON ident) [!]
594614
* arg = path [generics]
595615
* arg-without-generic = path
596616
* type-sep = COMMA/WS *(COMMA/WS)

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

+20
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ const QUERY = [
3737
"mod : :",
3838
"a!a",
3939
"a!!",
40+
"mod:a!",
41+
"a!::a",
4042
];
4143

4244
const PARSED = [
@@ -382,4 +384,22 @@ const PARSED = [
382384
userQuery: "a!!",
383385
error: 'Cannot have more than one `!` in an ident',
384386
},
387+
{
388+
elems: [],
389+
foundElems: 0,
390+
original: "mod:a!",
391+
returned: [],
392+
typeFilter: -1,
393+
userQuery: "mod:a!",
394+
error: 'Invalid search type: macro `!` and `mod` both specified',
395+
},
396+
{
397+
elems: [],
398+
foundElems: 0,
399+
original: "a!::a",
400+
returned: [],
401+
typeFilter: -1,
402+
userQuery: "a!::a",
403+
error: 'Cannot have associated items in macros',
404+
},
385405
];

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

+46-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const QUERY = ['fn:foo', 'enum : foo', 'macro<f>:foo'];
1+
const QUERY = ['fn:foo', 'enum : foo', 'macro<f>:foo', 'macro!', 'macro:mac!', 'a::mac!'];
22

33
const PARSED = [
44
{
@@ -40,4 +40,49 @@ const PARSED = [
4040
userQuery: "macro<f>:foo",
4141
error: "Unexpected `:`",
4242
},
43+
{
44+
elems: [{
45+
name: "macro",
46+
fullPath: ["macro"],
47+
pathWithoutLast: [],
48+
pathLast: "macro",
49+
generics: [],
50+
}],
51+
foundElems: 1,
52+
original: "macro!",
53+
returned: [],
54+
typeFilter: 14,
55+
userQuery: "macro!",
56+
error: null,
57+
},
58+
{
59+
elems: [{
60+
name: "mac",
61+
fullPath: ["mac"],
62+
pathWithoutLast: [],
63+
pathLast: "mac",
64+
generics: [],
65+
}],
66+
foundElems: 1,
67+
original: "macro:mac!",
68+
returned: [],
69+
typeFilter: 14,
70+
userQuery: "macro:mac!",
71+
error: null,
72+
},
73+
{
74+
elems: [{
75+
name: "a::mac",
76+
fullPath: ["a", "mac"],
77+
pathWithoutLast: ["a"],
78+
pathLast: "mac",
79+
generics: [],
80+
}],
81+
foundElems: 1,
82+
original: "a::mac!",
83+
returned: [],
84+
typeFilter: 14,
85+
userQuery: "a::mac!",
86+
error: null,
87+
},
4388
];

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

+22-18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const QUERY = [
33
"!",
44
"a!",
55
"a!::b",
6+
"!::b",
67
"a!::b!",
78
];
89

@@ -47,47 +48,50 @@ const PARSED = [
4748
},
4849
{
4950
elems: [{
50-
name: "a!",
51-
fullPath: ["a!"],
51+
name: "a",
52+
fullPath: ["a"],
5253
pathWithoutLast: [],
53-
pathLast: "a!",
54+
pathLast: "a",
5455
generics: [],
5556
}],
5657
foundElems: 1,
5758
original: "a!",
5859
returned: [],
59-
typeFilter: -1,
60+
typeFilter: 14,
6061
userQuery: "a!",
6162
error: null,
6263
},
6364
{
64-
elems: [{
65-
name: "a!::b",
66-
fullPath: ["a!", "b"],
67-
pathWithoutLast: ["a!"],
68-
pathLast: "b",
69-
generics: [],
70-
}],
71-
foundElems: 1,
65+
elems: [],
66+
foundElems: 0,
7267
original: "a!::b",
7368
returned: [],
7469
typeFilter: -1,
7570
userQuery: "a!::b",
76-
error: null,
71+
error: "Cannot have associated items in macros",
7772
},
7873
{
7974
elems: [{
80-
name: "a!::b!",
81-
fullPath: ["a!", "b!"],
82-
pathWithoutLast: ["a!"],
83-
pathLast: "b!",
75+
name: "!::b",
76+
fullPath: ["!", "b"],
77+
pathWithoutLast: ["!"],
78+
pathLast: "b",
8479
generics: [],
8580
}],
8681
foundElems: 1,
82+
original: "!::b",
83+
returned: [],
84+
typeFilter: -1,
85+
userQuery: "!::b",
86+
error: null,
87+
},
88+
{
89+
elems: [],
90+
foundElems: 0,
8791
original: "a!::b!",
8892
returned: [],
8993
typeFilter: -1,
9094
userQuery: "a!::b!",
91-
error: null,
95+
error: "Cannot have associated items in macros",
9296
},
9397
];

tests/rustdoc-js/macro-search.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// exact-check
2+
3+
const QUERY = 'abracadabra!';
4+
5+
const EXPECTED = {
6+
'others': [
7+
{ 'path': 'macro_search', 'name': 'abracadabra' },
8+
{ 'path': 'macro_search', 'name': 'abracadabra_b' },
9+
],
10+
};

tests/rustdoc-js/macro-search.rs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#[macro_export]
2+
macro_rules! abracadabra {
3+
() => {}
4+
}
5+
#[macro_export]
6+
macro_rules! abracadabra_b {
7+
() => {}
8+
}
9+
pub fn abracadabra() {}
10+
pub fn abracadabra_c() {}

0 commit comments

Comments
 (0)