diff options
author | ronny | 2001-05-08 13:49:49 +0000 |
---|---|---|
committer | ronny | 2001-05-08 13:49:49 +0000 |
commit | a7b820a614e5c0ccdf88063bad9761debbed9a68 (patch) | |
tree | a1f0ff2d41a78ff3799956bf97d5ea693d594c4a /frontend | |
parent | renamed ConversionInfo to ConvertState (diff) |
removed uniqueness attribute in ConvertState type definition
(ConvertState is attributed where it's use uniquely)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@403 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend')
-rw-r--r-- | frontend/convertcases.icl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/frontend/convertcases.icl b/frontend/convertcases.icl index 22b38f8..57e7484 100644 --- a/frontend/convertcases.icl +++ b/frontend/convertcases.icl @@ -10,11 +10,11 @@ exactZip [] [] exactZip [x:xs][y:ys] = [(x,y) : exactZip xs ys] -:: *ConvertState = +:: ConvertState = { ci_new_functions :: ![FunctionInfoPtr] - , ci_fun_heap :: !*FunctionHeap - , ci_var_heap :: !*VarHeap - , ci_expr_heap :: !*ExpressionHeap + , ci_fun_heap :: !.FunctionHeap + , ci_var_heap :: !.VarHeap + , ci_expr_heap :: !.ExpressionHeap , ci_next_fun_nr :: !Index } |