rust/tests/rustdoc-js/doc-alias.js

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

294 lines
7.4 KiB
JavaScript
Raw Normal View History

2020-04-30 22:27:24 +00:00
const QUERY = [
'StructItem',
'StructFieldItem',
'StructMethodItem',
'ImplTraitItem',
'StructImplConstItem',
2020-04-30 22:27:24 +00:00
'ImplTraitFunction',
'EnumItem',
'VariantItem',
'EnumMethodItem',
'TypedefItem',
'TraitItem',
'TraitTypeItem',
'AssociatedConstItem',
'TraitFunctionItem',
'FunctionItem',
'ModuleItem',
'ConstItem',
'StaticItem',
'UnionItem',
'UnionFieldItem',
'UnionMethodItem',
'MacroItem',
];
const EXPECTED = [
{
2021-08-11 18:14:26 +00:00
// StructItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Struct',
'alias': 'StructItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/struct.Struct.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// StructFieldItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Struct',
'name': 'field',
'alias': 'StructFieldItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/struct.Struct.html#structfield.field',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// StructMethodItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Struct',
'name': 'method',
'alias': 'StructMethodItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/struct.Struct.html#method.method',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
// ImplTraitItem
'others': [],
},
{
// StructImplConstItem
'others': [
{
'path': 'doc_alias::Struct',
'name': 'ImplConstItem',
'alias': 'StructImplConstItem',
'href': '../doc_alias/struct.Struct.html#associatedconstant.ImplConstItem',
'is_alias': true
},
],
2020-04-30 22:27:24 +00:00
},
{
2021-08-11 18:14:26 +00:00
// ImplTraitFunction
2020-05-07 19:42:41 +00:00
'others': [
{
'path': 'doc_alias::Struct',
'name': 'function',
'alias': 'ImplTraitFunction',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/struct.Struct.html#method.function',
'is_alias': true
},
],
2020-04-30 22:27:24 +00:00
},
{
2021-08-11 18:14:26 +00:00
// EnumItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Enum',
'alias': 'EnumItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/enum.Enum.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// VariantItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Enum',
'name': 'Variant',
'alias': 'VariantItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/enum.Enum.html#variant.Variant',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// EnumMethodItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Enum',
'name': 'method',
'alias': 'EnumMethodItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/enum.Enum.html#method.method',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// TypedefItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Typedef',
'alias': 'TypedefItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/type.Typedef.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// TraitItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Trait',
'alias': 'TraitItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/trait.Trait.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// TraitTypeItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Trait',
'name': 'Target',
'alias': 'TraitTypeItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/trait.Trait.html#associatedtype.Target',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// AssociatedConstItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Trait',
'name': 'AssociatedConst',
'alias': 'AssociatedConstItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/trait.Trait.html#associatedconstant.AssociatedConst',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// TraitFunctionItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Trait',
'name': 'function',
'alias': 'TraitFunctionItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/trait.Trait.html#tymethod.function',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// FunctionItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'function',
'alias': 'FunctionItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/fn.function.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// ModuleItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Module',
'alias': 'ModuleItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/Module/index.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// ConstItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Const',
'alias': 'ConstItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/constant.Const.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
{
'path': 'doc_alias::Struct',
'name': 'ImplConstItem',
},
2020-04-30 22:27:24 +00:00
],
},
{
2021-08-11 18:14:26 +00:00
// StaticItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Static',
'alias': 'StaticItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/static.Static.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// UnionItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Union',
'alias': 'UnionItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/union.Union.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
// Not an alias!
{
'path': 'doc_alias::Union',
'name': 'union_item',
'href': '../doc_alias/union.Union.html#structfield.union_item'
},
],
},
{
2021-08-11 18:14:26 +00:00
// UnionFieldItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Union',
'name': 'union_item',
'alias': 'UnionFieldItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/union.Union.html#structfield.union_item',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// UnionMethodItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias::Union',
'name': 'method',
'alias': 'UnionMethodItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/union.Union.html#method.method',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
{
2021-08-11 18:14:26 +00:00
// MacroItem
2020-04-30 22:27:24 +00:00
'others': [
{
'path': 'doc_alias',
'name': 'Macro',
'alias': 'MacroItem',
2020-05-07 19:42:41 +00:00
'href': '../doc_alias/macro.Macro.html',
'is_alias': true
2020-04-30 22:27:24 +00:00
},
],
},
];