diff options
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 88b7fc78..f4e5e5e1 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -199,10 +199,10 @@ type _fn = rec(effect effect, block body); -type method_ = rec(ident ident, _fn meth, def_id id); +type method_ = rec(ident ident, _fn meth, def_id id, ann ann); type method = spanned[method_]; -type obj_field = rec(@ty ty, ident ident, def_id id); +type obj_field = rec(@ty ty, ident ident, def_id id, ann ann); type _obj = rec(vec[obj_field] fields, vec[@method] methods); |