rust/tests/rustdoc-js-std/typed-query.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
486 B
JavaScript
Raw Normal View History

// exact-check
const QUERY = 'macro:print';
2021-08-11 13:14:26 -05:00
const FILTER_CRATE = 'std';
const EXPECTED = {
'others': [
{ 'path': 'std', 'name': 'print' },
{ 'path': 'std', 'name': 'println' },
2022-12-16 14:19:38 -06:00
{ 'path': 'std', 'name': 'eprint' },
{ 'path': 'std', 'name': 'eprintln' },
{ 'path': 'std::pin', 'name': 'pin' },
2021-08-11 13:14:26 -05:00
{ 'path': 'std::future', 'name': 'join' },
{ 'path': 'std', 'name': 'line' },
{ 'path': 'std', 'name': 'write' },
],
};