change ast::ty_param into a struct.
This commit is contained in:
parent
df7d376d25
commit
e1f1a1204a
6 changed files with 14 additions and 10 deletions
|
@ -121,7 +121,11 @@ enum ty_param_bound {
|
|||
|
||||
#[auto_encode]
|
||||
#[auto_decode]
|
||||
type ty_param = {ident: ident, id: node_id, bounds: @~[ty_param_bound]};
|
||||
struct ty_param {
|
||||
ident: ident,
|
||||
id: node_id,
|
||||
bounds: @~[ty_param_bound]
|
||||
}
|
||||
|
||||
#[auto_encode]
|
||||
#[auto_decode]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue