summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-js-std/typed-query.js
blob: 25efbad26954003233d959692152f34888221bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// exact-check

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

const EXPECTED = {
    'others': [
        { 'path': 'std', 'name': 'print' },
        { 'path': 'std', 'name': 'eprint' },
        { 'path': 'std', 'name': 'println' },
        { 'path': 'std', 'name': 'eprintln' },
        { 'path': 'std::pin', 'name': 'pin' },
        { 'path': 'std::future', 'name': 'join' },
        { 'path': 'std', 'name': 'line' },
        { 'path': 'std', 'name': 'write' },
    ],
};