rustc: remove the rest of drop

Removes:

ast::struct_def::dtor
syntax::ast::ii_dtor
syntax::visit::fk_dtor
syntax::ast_map::node_dtor
syntax:struct_dtor
This commit is contained in:
Erick Tryzelaar 2013-04-30 21:00:45 -07:00
parent 7d6d0029ba
commit c2e1f47955
30 changed files with 21 additions and 538 deletions

View file

@ -3346,7 +3346,6 @@ pub impl Parser {
(class_name,
item_struct(@ast::struct_def {
fields: fields,
dtor: None,
ctor_id: if is_tuple_like { Some(new_id) } else { None }
}, generics),
None)
@ -3803,7 +3802,6 @@ pub impl Parser {
return @ast::struct_def {
fields: fields,
dtor: None,
ctor_id: None
};
}