Change ast::path into a struct.
This commit is contained in:
parent
1be4bfb8cc
commit
bea67bde21
12 changed files with 144 additions and 71 deletions
|
@ -79,11 +79,13 @@ type fn_ident = Option<ident>;
|
|||
|
||||
#[auto_encode]
|
||||
#[auto_decode]
|
||||
type path = {span: span,
|
||||
global: bool,
|
||||
idents: ~[ident],
|
||||
rp: Option<@region>,
|
||||
types: ~[@Ty]};
|
||||
struct path {
|
||||
span: span,
|
||||
global: bool,
|
||||
idents: ~[ident],
|
||||
rp: Option<@region>,
|
||||
types: ~[@Ty],
|
||||
}
|
||||
|
||||
type crate_num = int;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue