diff options
| author | Graydon Hoare <[email protected]> | 2011-02-14 16:33:25 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-02-14 16:33:25 -0800 |
| commit | 890d027b653edd1722b186a5723944e622736313 (patch) | |
| tree | 15195e4e0025ec7da3c3d96d7924f1f2009b14d1 /src/comp/front/ast.rs | |
| parent | Expand expr_rec to take its optional trailing 'with' parameter. (diff) | |
| download | rust-890d027b653edd1722b186a5723944e622736313.tar.xz rust-890d027b653edd1722b186a5723944e622736313.zip | |
Add parse support for expr_ext.
Diffstat (limited to 'src/comp/front/ast.rs')
| -rw-r--r-- | src/comp/front/ast.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/comp/front/ast.rs b/src/comp/front/ast.rs index 3aec3226..820bbbfa 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -164,6 +164,7 @@ tag expr_ { expr_field(@expr, ident, ann); expr_index(@expr, @expr, ann); expr_path(path, option.t[def], ann); + expr_ext(vec[@expr], option.t[@expr], ann); } type lit = spanned[lit_]; |