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.

14 lines
300 B
JavaScript
Raw Normal View History

// exact-check
2021-08-11 13:14:26 -05:00
const FILTER_CRATE = 'std';
const EXPECTED = {
2023-06-09 09:49:38 -05:00
'query': 'macro:print',
'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' },
],
};