summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-js-std/typed-query.js
blob: fd5c5489d79cfe04a4d844cfdec619ec542719f7 (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': 'println' },
        { 'path': 'std', 'name': 'eprint' },
        { 'path': 'std', 'name': 'eprintln' },
        { 'path': 'std::pin', 'name': 'pin' },
        { 'path': 'std::future', 'name': 'join' },
        { 'path': 'std', 'name': 'line' },
        { 'path': 'std', 'name': 'write' },
    ],
};