diff options
author | johnvg | 2001-08-31 11:31:11 +0000 |
---|---|---|
committer | johnvg | 2001-08-31 11:31:11 +0000 |
commit | 4103e7b4ec4ce08d999cf0ca88e9f6d597bab75b (patch) | |
tree | 8e1c75f1704975653daeec34dc6fedf9e20803f0 /frontend/trans.dcl | |
parent | type strict and unboxed lists (diff) |
added code for strict and unboxed lists
replace decons/cons by decons_u/cons_u for unboxed lists
recognize nil/cons/decons as consumers
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@717 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/trans.dcl')
-rw-r--r-- | frontend/trans.dcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/trans.dcl b/frontend/trans.dcl index 4a2a204..c10ee16 100644 --- a/frontend/trans.dcl +++ b/frontend/trans.dcl @@ -10,10 +10,10 @@ cAccumulating :== -3 :: CleanupInfo -analyseGroups :: !{# CommonDefs} !IndexRange !Int !*{! Group} !*{#FunDef} !*VarHeap !*ExpressionHeap +analyseGroups :: !{# CommonDefs} !{#{#FunType}} !IndexRange !Int !Int !*{! Group} !*{#FunDef} !*VarHeap !*ExpressionHeap -> (!CleanupInfo, !*{! ConsClasses}, !*{! Group}, !*{#FunDef}, !*VarHeap, !*ExpressionHeap) -transformGroups :: !CleanupInfo !Int !*{! Group} !*{#FunDef} !{!.ConsClasses} !{# CommonDefs} !{# {# FunType} } +transformGroups :: !CleanupInfo !Int !Int !*{! Group} !*{#FunDef} !{!.ConsClasses} !{# CommonDefs} !{# {# FunType} } !*{#{# CheckedTypeDef}} !ImportedConstructors !*TypeDefInfos !*VarHeap !*TypeHeaps !*ExpressionHeap -> (!*{! Group}, !*{#FunDef}, !*{#{# CheckedTypeDef}}, !ImportedConstructors, !*VarHeap, !*TypeHeaps, !*ExpressionHeap) |