convert ast::pat_list_ident_ to a struct
This commit is contained in:
parent
4b0f702608
commit
eb8fd119c6
2 changed files with 6 additions and 2 deletions
|
@ -1356,7 +1356,10 @@ type variant = spanned<variant_>;
|
|||
|
||||
#[auto_encode]
|
||||
#[auto_decode]
|
||||
type path_list_ident_ = {name: ident, id: node_id};
|
||||
struct path_list_ident_ {
|
||||
name: ident,
|
||||
id: node_id,
|
||||
}
|
||||
|
||||
type path_list_ident = spanned<path_list_ident_>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue