summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js-std/typed-query.js
blob: eeb3e1888695953d3746b68ac2d4616af2df8248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// exact-check

const QUERY = 'macro:print';
const FILTER_CRATE = 'std';

const EXPECTED = {
    'others': [
        { 'path': 'std', 'name': 'print' },
        { 'path': 'std', 'name': 'println' },
        { 'path': 'std', 'name': 'eprint' },
        { 'path': 'std', 'name': 'eprintln' },
    ],
};