File tree 2 files changed +602
-394
lines changed
src/librustdoc/html/static/js
2 files changed +602
-394
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,30 @@ function initSearch(searchIndex){}
8
8
9
9
/**
10
10
* @typedef {{
11
- * raw: string,
12
- * query: string,
13
- * type: string,
14
- * id: string,
11
+ * isExact: boolean,
12
+ * name: string,
13
+ * fullPath: Array<string>,
14
+ * pathWithoutLast: Array<string>,
15
+ * pathLast: string,
16
+ * generics: Array<QueryElement>,
17
+ * }}
18
+ */
19
+ var QueryElement ;
20
+
21
+ /**
22
+ * @typedef {{
23
+ * original: string,
24
+ * val: string,
25
+ * length: number,
26
+ * pos: number,
27
+ * typeFilter: number,
28
+ * elems: Array<QueryElement>,
29
+ * elemName: (string|null),
30
+ * args: Array<QueryElement>,
31
+ * returned: Array<QueryElement>,
32
+ * foundElems: number,
33
+ * id: string,
34
+ * nameSplit: (string|null),
15
35
* }}
16
36
*/
17
37
var ParsedQuery ;
You can’t perform that action at this time.
0 commit comments