mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
31 lines
716 B
JavaScript
31 lines
716 B
JavaScript
const QUERY = ['trait<nested>', '-> trait<nested>', 't1, t2', '-> shazam', 'drizzel -> shazam'];
|
|
|
|
const EXPECTED = [
|
|
{
|
|
'in_args': [
|
|
{ 'path': 'where_clause', 'name': 'abracadabra' },
|
|
],
|
|
},
|
|
{
|
|
'others': [
|
|
{ 'path': 'where_clause', 'name': 'alacazam' },
|
|
],
|
|
},
|
|
{
|
|
'others': [
|
|
{ 'path': 'where_clause', 'name': 'presto' },
|
|
],
|
|
},
|
|
{
|
|
'others': [
|
|
{ 'path': 'where_clause', 'name': 'bippety' },
|
|
{ 'path': 'where_clause::Drizzel', 'name': 'boppety' },
|
|
],
|
|
},
|
|
{
|
|
'others': [
|
|
{ 'path': 'where_clause::Drizzel', 'name': 'boppety' },
|
|
],
|
|
},
|
|
];
|