rustdoc-search: build args, return, and generics on one unifier
This enhances generics with the "unboxing" behavior where A<T> matches T. It makes this unboxing transitive over generics.
This commit is contained in:
parent
04f4493722
commit
9946d67579
4 changed files with 178 additions and 138 deletions
68
tests/rustdoc-js/nested-unboxed.js
Normal file
68
tests/rustdoc-js/nested-unboxed.js
Normal file
|
@ -0,0 +1,68 @@
|
|||
// exact-check
|
||||
|
||||
const EXPECTED = [
|
||||
{
|
||||
'query': '-> Result<Object, bool>',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<Object<i32, u32>, bool>',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Object, bool',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Object<i32, u32>, bool',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> i32, u32, bool',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<i32, u32, bool>',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<Object<i32>, bool>',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<Object<u32>, bool>',
|
||||
'others': [
|
||||
{ 'path': 'nested_unboxed', 'name': 'something' },
|
||||
],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<Object<i32>, u32, bool>',
|
||||
'others': [],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<i32, Object<u32>, bool>',
|
||||
'others': [],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<i32, u32, Object<bool>>',
|
||||
'others': [],
|
||||
},
|
||||
{
|
||||
'query': '-> Result<Object<i32>, Object<u32>, bool>',
|
||||
'others': [],
|
||||
},
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue