diff options
| author | Marijn Haverbeke <[email protected]> | 2011-05-11 15:26:36 +0200 |
|---|---|---|
| committer | Marijn Haverbeke <[email protected]> | 2011-05-11 15:26:36 +0200 |
| commit | fe29d24b6e795b3149e710659d12a8c9972bed96 (patch) | |
| tree | 12a1def74085ffe7104575f3ce56b1f6245f9bb2 /src/comp/front/ast.rs | |
| parent | Get rid of block indices (diff) | |
| download | rust-fe29d24b6e795b3149e710659d12a8c9972bed96.tar.xz rust-fe29d24b6e795b3149e710659d12a8c9972bed96.zip | |
Get rid of arm indices
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 01dea8d8..3d8090b0 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -233,7 +233,7 @@ tag decl_ { decl_item(@item); } -type arm = rec(@pat pat, block block, hashmap[ident,def_id] index); +type arm = rec(@pat pat, block block); type elt = rec(mutability mut, @expr expr); type field = rec(mutability mut, ident ident, @expr expr); |