rustc: Add bind expressions to the AST

This commit is contained in:
Patrick Walton 2010-12-20 18:58:18 -08:00
parent ed1dddc33f
commit 5cbf8889d0
2 changed files with 26 additions and 0 deletions

View file

@ -139,6 +139,7 @@ tag expr_ {
expr_tup(vec[elt], ann);
expr_rec(vec[field], ann);
expr_call(@expr, vec[@expr], ann);
expr_bind(@expr, vec[option.t[@expr]], ann);
expr_binary(binop, @expr, @expr, ann);
expr_unary(unop, @expr, ann);
expr_lit(@lit, ann);