summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js-std/parser-filter.js
blob: e5a87a415ac476e8bdf59920435f7550627ff172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const QUERY = ['fn:foo', 'enum : foo', 'macro<f>:foo'];

const PARSED = [
    {
        elems: [{
            name: "foo",
            fullPath: ["foo"],
            pathWithoutLast: [],
            pathLast: "foo",
            generics: [],
        }],
        foundElems: 1,
        original: "fn:foo",
        returned: [],
        typeFilter: 5,
        userQuery: "fn:foo",
        error: null,
    },
    {
        elems: [{
            name: "foo",
            fullPath: ["foo"],
            pathWithoutLast: [],
            pathLast: "foo",
            generics: [],
        }],
        foundElems: 1,
        original: "enum : foo",
        returned: [],
        typeFilter: 4,
        userQuery: "enum : foo",
        error: null,
    },
    {
        elems: [],
        foundElems: 0,
        original: "macro<f>:foo",
        returned: [],
        typeFilter: -1,
        userQuery: "macro<f>:foo",
        error: "Unexpected `:`",
    },
];