diff options
| author | Graydon Hoare <[email protected]> | 2011-04-14 16:50:48 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-04-14 16:50:59 -0700 |
| commit | 232c4509574bd27605dfa93890670e1ae1366e31 (patch) | |
| tree | fddaed0c44cb9b15355c20c37e00cec21d1d3df1 /src/comp/front/ast.rs | |
| parent | rustc: Use the unified result for the type of assignment expressions (diff) | |
| download | rust-232c4509574bd27605dfa93890670e1ae1366e31.tar.xz rust-232c4509574bd27605dfa93890670e1ae1366e31.zip | |
Work on destructors, not entirely functional yet (no tydesc integration).
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index b0035ba6..b0a1a0d6 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -362,7 +362,7 @@ type method = spanned[method_]; type obj_field = rec(@ty ty, ident ident, def_id id, ann ann); type _obj = rec(vec[obj_field] fields, vec[@method] methods, - option.t[block] dtor); + option.t[@method] dtor); tag mod_index_entry { mie_view_item(@view_item); |