diff options
| author | Patrick Walton <[email protected]> | 2011-03-08 12:42:56 -0800 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2011-03-08 12:42:56 -0800 |
| commit | 4654faa67c831728c677027f2beb48fe3592b511 (patch) | |
| tree | 36352677b4415e077c97dc688583a1ce7f097e79 /src/comp/front/ast.rs | |
| parent | rustc: Rework type substitution to pair up type parameter IDs with the suppli... (diff) | |
| download | rust-4654faa67c831728c677027f2beb48fe3592b511.tar.xz rust-4654faa67c831728c677027f2beb48fe3592b511.zip | |
rustc: Add a slot for explicit type parameter instantations to the typechecker's AST annotation
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 52ae66c8..56914800 100644 --- a/src/comp/front/ast.rs +++ b/src/comp/front/ast.rs @@ -21,7 +21,7 @@ type ty_param = rec(ident ident, def_id id); // Annotations added during successive passes. tag ann { ann_none; - ann_type(@middle.ty.t); + ann_type(@middle.ty.t, option.t[vec[@middle.ty.t]] /* ty param substs */); } tag def { |